inheritance of frxreport

Hello All,

How can I make a common part of different reports?
OO solution should be:
I create an abstract report on a data module, setting common report footer, logos, and so on.
And I create a differrent descendants from it to make special bands for special reports.
Fastreport doesn' t support it ;)

What is the fastreport's solution for this problem?

thx.

Comments

  • edited 8:27AM
    I'am trying this and it seems to work:

    If I want to use 2 different ReportSummary band, I create each on different page.
    Main report is Page1. To use ReportSummary2 from Page2, I switch BOTH parents.

    procedure Page1OnBeforePrint(Sender: TfrxComponent);
    begin
    ReportSummary1.Parent := Page2;
    ReportSummary2.Parent := Page1;
    end;

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.