Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
📖HomeBack The Print Method on a Crystal report can be called using logic in the same way as any other method. The key for server-side printing is to ensure that the Printing user has been configured in the Server Configuration. The Printing user allows the ClearSCADA server to logon to the operating system as a particular user and use the print settings of that user. Without this, ClearSCADA could not print at all, as print settings are user specific, and ClearSCADA runs under the SYSTEM account. Further detail on this can be found in the online help.
The simplest way to verify that the printing user has been configured correctly is to right click on the report object and manually select the Print option. If the report prints correctly, the printing user has been configured without error.
Three parameters are expected by the Print method:
The name of the printer (as defined in the Printers section in the control panel)
The number of copies
Whether the copies are collated
Some example ST code for calling the Print method is shown below:
PROGRAM PrintReportMETHOD Print AT %M(NameOfReport.Print) : STRING, INT, BOOL;END_METHODPrint('NameOfPrinter',1,FALSE);END_PROGRAM