Hi,
I need to have my Transheader on every pages but the first one.
When Im using CurrReport.NEWPAGE function the transheader doesnt appear (cf :
http://www.mibuso.com/forum/viewtopic.php?f=23&t=7512&hilit=printoneverypage+currreport.newpage)
So I made 2 Headers sections, one for the first page (PrintOnEveryPage No) and one for every pages (PrintOnEveryPage Yes).
But the 2 Headers are printed on every pages ...
IF esta='' THEN
esta:="Edition Special Rubric".establishement;
IF "Edition Special Rubric".establishement<>esta THEN BEGIN
CurrReport.NEWPAGE;
esta:="Edition Special Rubric".establishement;
END;
Any tips ??
Comments
IF CurrReport.PAGENO = 1 THEN
CurrReport.SHOWOUTPUT(FALSE);
Good luck!
Thanks, much appreciated !