how to glue a group footer before the page footer
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
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
This discussion has been closed.
Comments
Using the ReportBeforePrint event, something like the following will work:
GroupFooterBand1.PrintPosition := Report.PrinterSetup.PaperHeight -
Report.PrinterSetup.MarginBottom - GroupFooterBand1.Height;
Bob