Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

how to glue a group footer before the page footer

edited December 2005 in General
The group footer is printed just below the last detailed band.
I'd like to glue it to the bottom of the page, just above the page
footer.
How can this bedone?
Something like groupfooter.top:=footer.top-groupfooter.height ?
But the above properties are only band relative coordinates. How can I
calculate that on absolute paper positions?

Regards
Gunther

Comments

  • edited December 2005
    Gunther,

    Using the ReportBeforePrint event, something like the following will work:

    GroupFooterBand1.PrintPosition := Report.PrinterSetup.PaperHeight -
    Report.PrinterSetup.MarginBottom - GroupFooterBand1.Height;


    Bob

This discussion has been closed.