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

help with footer overlap

edited March 2005 in General
I have a very simple report...Header, Detail (with a subreport in it),
footer. I need the footer to only print on the first page. I added this
code to the footer's BeforePrint event

if ppReport1.PageNo > 1 then
ppFooterBand13.Visible := False
else ppFooterBand13.Visible := True;

When the code is there, it only prints on the first page, however, the
detail band doesn't respect it. The records from the detail band just write
right over it. When I remove the code, the detail band respects the footer,
but prints the footer on every page (which I don't want).

help!

Comments

This discussion has been closed.