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

Stimulsoft Reports.NET discussion
Post Reply
jamesk
Posts: 23
Joined: Thu Apr 12, 2007 12:47 pm

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

Post 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!
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

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

Post by Vital »

Hello,

Please use following code in BeginRenderEvent of report:

Code: Select all

page1.Copies - ds_table.QuantityToPrint;
Thank you.
Post Reply