WebReport- only shows last report of a combined report
Hi Suppport,
If I use report merging/appending as demonstrated in your manual:
Then only the last report will be shown in the WebReport. I have double checked that the report is properly generated- I have 5 pages (5 merged reports) in the saved report.fpx, but only the last report is shown in WebReport.
Kind Regards,
Keith Blows
If I use report merging/appending as demonstrated in your manual:
report1.Load("report1.frx");
report1.Prepare();
report1.Load("report2.frx");
report1.Prepare(true);
Then only the last report will be shown in the WebReport. I have double checked that the report is properly generated- I have 5 pages (5 merged reports) in the saved report.fpx, but only the last report is shown in WebReport.
Kind Regards,
Keith Blows
Comments
Please show the full code how do you pass this report to WebReport.
WebReport1_Load(...)
{
...
WebReport1.Report = repMain;
WebReport1.ReportDone = true;
}