I upgraded Amyuni PDF converter from 2.0 to 2.5. I think I uninstalled all previous PDF converters and installed 2.5. I changed the external dll calls from ctintf.dll to ctintf250.dll.
Lets start with the first problem:
The code of the program at initalisation is:
//------------------------------------------------------------
SetNull(PDFPrinter)
PDFPrinter = DriverInit(PDFPrinterNaam)
IF IsNull(PDFPrinter) OR PDFPrinter <= 0 THEN
PDFPrinter = PDFDriverInit(PDFPRINTERNAAM)
IF PDFPrinter = 0 THEN
GetLastErrorMsg(ls_error, ll_error)
MessageBox('HALLO', ls_error)
END IF
END IF
//--------------------------------------------------------------
1. It works when the printer is create with install and renamed to our printer name. When I then delete the printer and start our program again, it works fine the first time. After this it does not work anymore and I get the message "Unknow printer driver program (or software)". I have to translate it from Dutch.
When I use install again go to 1
How can I solve receiving this message?