Append one report to the end of another
Hi
I have 2 sperate reports, each is stored in its own TFrxReport component, I often use each report individually but would also like to be able to append one report to the end of the other report so that they are both shown on the screen. I know this can be done with fr3 files that are saved to the HDD but how can I append a report held in one TFrxReport to the end of another reportheld ina different TFrxReport
Thanks
colin
Comments
frxReport2.PrepareReport(True);
frxReport1.PreviewPages.AddFrom(frxReport2);
frxReport1.ShowPreparedReport;