or
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 have the following problem:
As it is recommended in the documentation I created a separate Class Library for the reporting scripts. Can you tell me if (and how) I can use App_GlobalResouces in the reports?
Thanks