Page 1 of 1

Control Printing In Service Manager?

Posted: Wed Mar 15, 2006 7:27 am
by Andrew Cutting
I want to be able to suppress the standard print dialog that shows up in the Service Manager and present my own print dialog instead. Is this possible?

Posted: Wed Mar 15, 2006 7:34 am
by COBS Tech Support
Refer to the help topic "Script Creation" for technical details on how to do this or "Screen Builder Script Creation" for CAPITAL 7.5 or above.

For example inside the file JOBCARD.MAC add these lines:

If Mode = 5
* Put your form creation script here
* Put your print job creation script here

* Suppress normal print dialog by returning FALSE
Return FALSE
Endif