Hi stef i have requirement to show single report for n count (more than 1)
how to make it as dynamic rendering instead of what u suggested in below snippet your example works for only 3 reports.
is there any other idea create object for Report1 depend upon some count
thanq you
public class MyReportBook : Telerik.Reporting.ReportBook
{
public MyReportBook()
{
this.Reports.Add(new Report1());
this.Reports.Add(new Report1());
this.Reports.Add(new Report1());
}
}