Document methods missing?

The Amyuni PDF Converter is our Printer Driver that enables you to convert any documents to PDF format. If you have any questions about installing and using the Amyuni PDF Converter please post them here.
Post Reply
mhandzlik
Posts: 3
Joined: Thu Oct 27 2005

Document methods missing?

Post by mhandzlik »

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.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

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.
Post Reply