AndrewMozley
Programmer
An application is producing several .pdf files, and these are being printed using Bullzip. The files are in fact statements of outstanding customer invoices, so one .pdf file is being produced for each customer.
The application works by creating an object :
oBullzip = CREATEOBJECT("BullZip.PDFPrinterSettings")
. . and then sets various options before starting the process of generating the .pdf
This works up to point; the separate .pdf files are being generated and each one is written to its own filename. However, during the creation process, a message flashes up on the screen saying “Printing Page 1”. This happens for each report, so about once every 2 or 3 seconds when a batch of .pdf files is being generated.
I would like to suppress these messages. Have tried setting various options, including :
oBullzip.SetValue("ShowProgress","No")
But, so far, have not been able to suppress the “Printing Page 1” messages.
If anyone has had experience of this, and been able to suppress them, I would be grateful for guidance.
Thanks. Andrew
The application works by creating an object :
oBullzip = CREATEOBJECT("BullZip.PDFPrinterSettings")
. . and then sets various options before starting the process of generating the .pdf
This works up to point; the separate .pdf files are being generated and each one is written to its own filename. However, during the creation process, a message flashes up on the screen saying “Printing Page 1”. This happens for each report, so about once every 2 or 3 seconds when a batch of .pdf files is being generated.
I would like to suppress these messages. Have tried setting various options, including :
oBullzip.SetValue("ShowProgress","No")
But, so far, have not been able to suppress the “Printing Page 1” messages.
If anyone has had experience of this, and been able to suppress them, I would be grateful for guidance.
Thanks. Andrew