Problem with PageFooter
I'm using Delphi XE2 and FastReport 4.12.6
I have a report with the following structure
PAGE HEADER
CHILD BAND
MASTER DATA
PAGE FOOTER
REPORT SUMMARY
When I print the report I got the following result
http://imageshack.us/photo/my-images/4/errorprint.gif
The lines from the master data band don't link with the lines of the page footer band
Any suggest?
I have a report with the following structure
PAGE HEADER
CHILD BAND
MASTER DATA
PAGE FOOTER
REPORT SUMMARY
When I print the report I got the following result
http://imageshack.us/photo/my-images/4/errorprint.gif
The lines from the master data band don't link with the lines of the page footer band
Any suggest?
Comments
A page footer will print in fixed position, depending on the page's bottom margin.
A masterdata band will move to new page when there is not room for one more in the current page.
So, you can try one on these alternatives:
- ajust bottom margin to move the page footer up or down until it touches the masterdata.
- adjust masterdata.height so that rows fills the available space better
- increase the height of your masterdata-line-items, until it fits. It is not a problem that that height og line items is larger than the masterdata.height.
I would have tried the last suggestion first.