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>
"two-pass report and compare <Page> with <TotalPages>" how you do it ?
it's an invoice form .. I have to print the whole frame but the fields of the total only on the last page ... with TfrxReportSummary band it doesn't print anything it leaves the space empty
as you can see from the image the first page is empty below. The secoda does not have the detail ... the size must always be the same .. and print all the items with the values only on the last page
procedure PageFooter1OnBeforePrint(Sender: TfrxComponent);
begin
if Engine.FinalPass then
Memo3.Visible := <Page> = <TotalPages>;
end;