I have a requirement to generate a report that is actually 13 subreports in a single conatiner report. Is there a way to force paging at the beginning of selected subreports. I am using Report Headers in the subreports but setting the pagebreak on those headers does not provide paging.
To produce such a report you can use a little workaround - put all your subreports into a detail section of a master report with a dummy data source (the count of rows must be equal to the count of subreports). Then set the subreports' Visible property in their ItemDataBinding event handlers (see file MasterReport.vb from attached sample). Please note how we use rowCounter to keep track which subreport to make visible.
Attached you can find a sample project with four sub reports and a master report for your case.