I am not familiar with this app,(but I am definately interested in what it may do) here is a snippet of code that performs the same action but in c#
Code:
// Wait till doc gets queued up.
while(creator.cCountOfPrintjobs != [Your COUNT of documents printed]);
// Tell PDFCreator to combine all the documents.
creator.cCombineAll();
// Start the printer.
creator.cPrinterStop = false;
// Wait till all doc get converted to pdf.
while(creator.cCountOfPrintjobs != 0);
I've done similar exercises when writing vb code for the Quickbooks IDE, often the methods of the objects are identical, only the syntax is different.
Please post the code if you get it to work.
Here is the website that I located the code,http://angrez.blogspot.com/
Thanks
Steve