Hello, I'm trying to load small reports into a larger report. However the full report has lots of whitespace that shouldn't be there.
This base report has our company logo and some other information.
Is my logic wrong for adding reports to a base report?
I've checked the small reports, and each one only takes up their correct amount of space. I checked it by making the background color different from the main report.
Thanks in advance for any advice/help.
This base report has our company logo and some other information.
Is my logic wrong for adding reports to a base report?
private
void
LoadReports(List<Report> reports)
{
foreach
( Report report
in
reports ) {
if
( report !=
null
) {
SubReport sr =
new
SubReport();
sr.ReportSource = report;
this
.detail.Items.Add(sr);
}
}
}
I've checked the small reports, and each one only takes up their correct amount of space. I checked it by making the background color different from the main report.
Thanks in advance for any advice/help.