Multiple reports in one report

edited 2:13AM in FastReport .NET
Is it posible to make one report from several of other reports? Precisely, couple of us wants to make separate reports and show them as one report on web page.

Comments

  • edited May 2011
    Yes it is posible. You can use this code:
    Report report = new Report();
    report.Load(@"C:\First Report.frx");
    report.Prepare();
    report.Load(@"C:\Second Report.frx");
    report.Prepare(true);
    
    After that, you can export it to html and show it on web page.

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.