Page 1 of 1

How to specify number of copies to print per page inside designer?

Posted: Tue Mar 18, 2008 12:28 pm
by jamesk
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?

Posted: Tue Mar 18, 2008 2:34 pm
by Vital
Hello,

Please use following code in BeginRenderEvent of report:

Code: Select all

page1.Copies - ds_table.QuantityToPrint;
Thank you.