Again for PageFooter
I need to have a a different first page for my report. For header it is OK, I have this possibility with Report Title and Page header, but it is needed that page footer is also different on first page for one of my reports. Can anyone help me?
How to make diferent first page footer?
How to make diferent first page footer?
Comments
what are you trying to change in the footer contents of some memos or all different memos or height of page footer band.
regards
I thought I need help with this one
add extra memos containging what you want and set visible property on and off in the obp of footer using code like
begin
if ([Page#] = 1) then
begin
memo1.visible := true;
memo2.visible := true;
end
else
begin
memo1.visible := false;
memo2.visible := false;
end;
end
playing with the footers height is very tricky because you must alter positions of some memos.
as to lines the easiest way is to add empty memos in each band sized to the band,
and set the frames properties of these memos.
ie memo added to page header
set frame to solid black top left right
If you need some extra vertical lines on the page then after you have everything else done and the report working
add an overlay band and place vert lines on it.
hope this helps
regards
gord