Would it be possible to create a way to change the PDFCreator settings without having to print something first? All of the examples create the windows test page and then call PDFCreatorQueue.NextJob to adjust the settings. It would be nice if one could modify the settings before having to print something. How about about a “NewJob” call as well as NextJob?
Hello,
what could be a reason to do this? I mean, by applying settings, you want to tell PDFCreator how a specific print job should be printed, if there is none, why do you want to tell it, how to print one. Further, why does it make a difference to you, if you set the settings for a job before arriving or after arriving?
Maybe I’m not getting your intention, in that case it would be nice, if you would post use cases or detailed examples.
Regards,
Hi Sazan,
Hey,
one thing first: the workflow of the new COM Interface has completely changed in comparison to the old, there is no autosave property anymore for good reasons. Please read the manaul especially the COM Interface part of it carefully.
To achieve your above goal, you would do something like the following:
//assuming that you want to print 3 files
pdfCreator.PrintFile(myFile1);
pdfCreator.PrintFile(myFile2);
if (jobQueue.WaitForJobs(3,20)) {
You’re welcome

Where is the “pdfforge.PDFCreator.COM” dll located? So I can reference it my project.
Hi,