show three report file in one page

edited 10:59PM in FastReport 3.0
hi
i'm work delphi & fastreport

i have three reportfile ( for example '1.fr3' , '2.fr3' , '3.fr3')

i want load all file and preview in one page.

please help me

tnx

Comments

  • gpigpi
    edited 10:59PM
    Use batch report
    frxReport1.LoadFromFile('1.fr3');
    frxReport1.PrepareReport(True);
    frxReport1.LoadFromFile('2.fr3');
    frxReport1.PrepareReport(False);
    frxReport1.LoadFromFile('3.fr3');
    frxReport1.PrepareReport(False);
    frxReport1.ShowPreparedReport;
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.