Hi,
I have readed carefully all the instructions you provided me about the COM interface, and also all the examples distributed within the application.
I'm really confused. They seems like almost totally nonsense to me.
I've found no basic examples allowing me to perform the simplest task i can imagine... just convert a bunch of word documents to PDF!
They are all about managing of the Job Queue via COM, and that is fine, but how can i "feed" the queue with jobs ? All COM examples just perform a pretty uncommon print of the WindowsTestPage (very fancy example, but quite confusing when you need to learn some basic usage of the api).
I do not understand if i need to use the commandline interface nor a COM interface to automate an external application to print as PDF. No examples at all are provided. I understood that from .Net it is somewhat tricky because i need to use late-binding, but nonetheless i feel the documentation is not enough to deeply understand the product.
The 1.7.3 API were pretty strange and with wrong naming conventions, but understandable. I'm trying to port an old VBNET code written for 1.7.3 but i now have countless questions:
1- Old code create a COM object "PDFCreator.clsPDFCreator" usign which you can
initialize the engine with _PDFCreator.cStart("/NoProcessingAtStartup")
Do i need to do something equivalent on new codebase ?
2- Old code allowed to check if the file is printable using _PDFCreator.cIsPrintable(FileName)
What is the equivalent way with new codebase to do the same ?
3- Old code use "profile files" with _PDFCreator.cReadOptionsFromFile(OptionsFilename)
Do the new codebase have the concept of profile files, or do they relies on Names/Guids ?
4- Old code can handle BMP, PCX, EPS, PS file format, what about in new update?
5- Old code: _PDFCreator.cAddPrintjob(FileName) / _PDFCreator..cAddPrintFile(FileName)
How to add print jobs using new code via COM interface ?
6- Old code needed to switch def printer using _PDFCreator.cDefaultPrinter = "PDFCreator"
Do i need to do the same with new code ? Any example available ?
7- Old code had dozens of PDF settings as property fields,
New code only string parameter properties ?
I encourage you to provide a slightly more comprehensive examples on your distribution, the new version seem to me much more difficult to program at API level compared to the old one, i really expected a more straightforward update process from my old code.