Multiple Reports

Hi, i have just started to learn about fast reports in delphi. i am creating a program that links to an sql database where it chekcs the number of vehicles in a fleet. if the number is 12 or under it prints an a5 sheet with all of the details on and if the number is 13 or over then it prints an a4 sheet with all of the details on. how exactly can i achieve this to show both of the reports together? many thanks.

Comments

  • gpigpi
    edited 12:34AM
    Use batch report
    frxReport1.LoadFromFile('1.fr3');
    frxReport1.PrepareReport(True);
    frxReport1.LoadFromFile('2.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.