PageFooter Question
I have this code
if <Page#> = <TotalPages#> then
PageFooter1.visible := false
else
PageFooter1.visible := true;
but the PageFooter keeps on the last page.
How could i hide the PageFooter on the last page?
if <Page#> = <TotalPages#> then
PageFooter1.visible := false
else
PageFooter1.visible := true;
but the PageFooter keeps on the last page.
How could i hide the PageFooter on the last page?
Comments
Wayne
if <Page#> = <TotalPages#> then
PageFooter1.visible := false
else
PageFooter1.visible := true;
make the components not visible
if <Page#> = <TotalPages#> then
begin
MemoXX.visible := false;
MemoXY.visible := false;
.. etc.
end;
Peter
Technisoft