Visible only last page
in a footer page I have to print the name of the fields but not their values, they must be printed only on the last page how can I do? example the total document to be printed only on the last page. with crystal report I put suppress if the page is not the last one how can I do FR
Comments
Use TfrxReportSummary band or use two-pass report and compare <Page> with <TotalPages>
procedure PageFooter1OnBeforePrint(Sender: TfrxComponent);
begin
if Engine.FinalPass then
Memo3.Visible := <Page> = <TotalPages>;
end;