Hello,
We are trying to print a report where each page will be printed x number of times based on a column in a table. We were trying to add a line inside the code of the report (using design.exe) this.page1.Copies = ds_table1.QuantityToPrint but lines inserted in code does not save. Is there a way to set the number of copies to print per page in a report?
Thanks!
How to specify number of copies to print per page inside designer?
How to specify number of copies to print per page inside designer?
Hello,
Please use following code in BeginRenderEvent of report:
Thank you.
Please use following code in BeginRenderEvent of report:
Code: Select all
page1.Copies - ds_table.QuantityToPrint;