Hi, in the DetailSection of a report I'm trying to add a picture box in a subReport. My problem is that if the CrossTab is really large(spreads across multiple pages), the picture box is printed over the table, and not after it.
this.Detail.Items.AddRange(new ReportItemBase[] { this.Crosstab1, subReport });
This is how I create the subReport:
var subReport = new SubReport();
var testReport = new ReportTest();
testReport.DetailSection.Items.Add(this.PictureBox);
var instanceReport = new InstanceReportSource
{
ReportDocument = testReport,
};
subReport.ReportSource = instanceReport;
Do you know how can I add a page break after the CrossTab?
P.S. In this project I can't use the designer for the reports.