we're using your product in our VFP Application (PDF Converter V. 3.03 - latest).
After solving the common problems (access to registry, map Printer port to new Port NUL:).
The printer is registred and can print a windows testsite (created in normal speed, about 1 sec)
We have a very big problem.
We communicate with the Printer via ActiveX Interface. Heres a short code:
(Printer is installed an licenced success fully)
Code: Select all
lcPrinter = UPPER("AMYUNI")
lcOutput = "C:\MyDay\Report_01012002.pdf"
loPrinter =CreateObject("CDIntfEx.CDIntfEx")
lnReturn = loPrinter.DriverInit("Amyuni")
loPrinter.FileNameOptionsEx = 1 + 2 +200+8000+200000+400000
loPrinter.DefaultFileName = lcOutPut
Set Printer To Name (lcPrinter)
Report Form anual_sales.frx to PRinter
loPrinter.RestoreDefaultPrinter()
loPrinter.FileNameOptions = 0
loPrinter.DriverEnd()
The Printer initalisied successfully (lnReturn = 0) and sets the options.
But when we try to print follwing problems occur:
- Sometimes the dialog Window is show where to save the pdf
- PDFs are printer very slowly (takes about 1 Minute till the pdf is produced)
- PDF Print jobs stuck in Printer Queue
The Printer works fine on Windows XP oder Windows 2003 Server (all x32) but on x64 we have those problems.
Thanks in advance!