Posted 29 November 2021, 7:05 am EST
Goodmorning everyone
I should print values only on the last page in the PageFooter section.
I tried this way Field29.Visible (Page = Pages), in PageFooter OnPrint.
but it does not work.
Some idea?
Forums Home / ActiveReports / ActiveReports v3-6
Posted by: massimo.valtolina on 29 November 2021, 7:05 am EST
Posted 29 November 2021, 7:05 am EST
Goodmorning everyone
I should print values only on the last page in the PageFooter section.
I tried this way Field29.Visible (Page = Pages), in PageFooter OnPrint.
but it does not work.
Some idea?
Posted 27 December 2021, 5:02 am EST
Hello ,
there are several possible solutions:
e.g. you could try to use DrawText method in ReportEnd event handler.
Document.Pages[Document.Pages.Count-1].DrawText…
Thanks,
Sergey Romanov.