PDF Converter Version Number

If you are a VFP developer and have any questions about using our products from VFP here is the place to post them.
Post Reply
smckay
Posts: 3
Joined: Thu Sep 17 2009

PDF Converter Version Number

Post by smckay »

Is there a property or function that call be used to determine the version of the PDF Converter v4 installed on a particular Workstation?

I want to write some code that compares the version on the workstation with the version that our software product expects.

thanks in advance,

Stuart
Devteam
Posts: 119
Joined: Fri Oct 14 2005
Location: Montreal
Contact:

Re: PDF Converter Version Number

Post by Devteam »

The method GetVersionInformation will give you the version number of the API (CDINTF) and the printer driver. This method is documented here:
http://www.amyuni.com/WebHelp/Developer ... #index.htm

Code: Select all

ActiveX:
long GetVersionInformation(long* CDIntfMajor, long* CDIntfMinor, long* PrinterDriverMajor, long* PrinterDriverMinor)

DLL:
long GetVersionInformation(HANDLE hIntf, long *CDIntfMajor, long *CDIntfMinor, long *PrinterDriverMajor, long *PrinterDriverMinor)

Parameters
CDIntfMajor
Will contain the cdintf.dll major version.

CDIntfMinor
Will contain the cdintf.dll minor version.

PrinterDriverMajor
Will contain the printer driver major version.

PrinterDriverMinor
Will contain the printer driver minor version.
Amyuni Development Team

Efficient and accurate conversion to PDF, XPS, PDF/A and more. Free trials at - https://www.amyuni.com
Post Reply