I am using Evaluation Version Developer Pro activex within Centura development environment. I am able to create the PDF printout from within application. I would now like to utilize some of the PDF file processing methods documented in the developers manual i.e. Document.Open, Document.append, Document.Print...
However I do not see these methods exposed within my IDE. Is there a different or additional dll I should use. I am currently using the cdintf.dll (renamed to cdintf250.dll) version 2.50e-1.
Document methods missing?
Hello,
I will remove the list of functions from your post because the formatting is not respected and the functions are appearing as an unformatted list.
A complete list of CDIntf's functions is available in the Developers' manual "Common Driver Interface 250.pdf"
You can use CDIntfEx.Document Interface to perform postprocessing actions. Here is a pseudocode to open a pdf file and print it.
doc = cdintfEx.Document
doc.setlicenseKey(Licensee, ActivatonCode)
doc.Open ("c:Temp\test.pdf","")
doc.Print ("My Printer",0)
Hope this helps.
I will remove the list of functions from your post because the formatting is not respected and the functions are appearing as an unformatted list.
A complete list of CDIntf's functions is available in the Developers' manual "Common Driver Interface 250.pdf"
You can use CDIntfEx.Document Interface to perform postprocessing actions. Here is a pseudocode to open a pdf file and print it.
doc = cdintfEx.Document
doc.setlicenseKey(Licensee, ActivatonCode)
doc.Open ("c:Temp\test.pdf","")
doc.Print ("My Printer",0)
Hope this helps.