Posted 28 November 2021, 10:05 pm 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 28 November 2021, 10:05 pm EST
Posted 28 November 2021, 10:05 pm 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 26 December 2021, 8:02 pm 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.