Report Summary

Just learning this product:

How do I place a report summary band so that it prints at the bottom of the final page.

Also any guides on using the code page

Thanks

Mike

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 7:55AM
    procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent);
    begin
    if engine.freespace > reportsummary1.height
    then
    begin
    //Engine.CurY := Engine.PageHeight -reportsummary1.height -Band3.Height - 1;

    end;
    end;

    procedure ReportSummary1OnAfterCalcHeight(Sender: TfrxComponent);

    begin
    Engine.CurY := Engine.PageHeight -reportsummary1.height -Band3.Height - 1;
    end;
    ;)

Leave a Comment