Resusing existing reports
Can this be done:
I have an existing report (report1.frf)
I now create a new report and want to incorporate report1.frf on a separate page, ie it will be a different page format and use another printer bin.
?
TIA
I have an existing report (report1.frf)
I now create a new report and want to incorporate report1.frf on a separate page, ie it will be a different page format and use another printer bin.
?
TIA
Comments
I realise that composite reports are intended to do this. However, I am only finishing up with blank pages. Individually all the reports preview OK.
Maybe I am missing something in the use of composites?
frReport1.LoadFromFile(file1);
frReport2.LoadFromFile(file2);
frCompositeReport1.Reports.Clear;
frCompositeReport1.Reports.Add(frReport1);
frCompositeReport1.Reports.Add(frReport2);
frCompositeReport1.ShowReport;