|
|
|
|
|
- Allowing the user to define the number of report copies
- Limits
NbCopy (Property) In french: NbCopie
The NbCopy property is used to determine and change the number of report copies to print.
// Print 10 copies of the "RPT_Customer" report RPT_Customer.NbCopy = 10
Syntax
Finding out the number of identical copies for a report Hide the details
<Result> = <Report used>.NbCopy
<Result>: Integer Number of copies to print. <Report used>: Report name Name of the report to be used.
Modifying the number of identical copies for a report Hide the details
<Report used>.NbCopy = <Number of copies>
<Report used>: Report name Name of the report to be used. <Number of copies>: Integer Number of copies to print. Remarks Allowing the user to define the number of report copies Since the NbCopy property can only be used in the code of the report, the number of copies must be passed as parameter to the report in the print code. For example: - Code used to print the report.
iPrintReport(RPT_MyReport, 3)
- Opening code of report.
PROCEDURE RPT_MyReport(nNbCopies) RPT_MyReport.NbCopy = nNbCopies
Limits - The NbCopy property applies only to reports (and not to controls or blocks in a report).
- This property is taken into account when the print is performed on a printer.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|