how to repeat report header on every page
have you tried going to the report in design view.
View The sections
View The Properties of the header section
Set PrintOnEveryPage to YES
I have tried this but its not working
Thanks
if you could then atleast give more information then we can help you…because the question you posted’s answer is what harry gave.
In posted purchase invoice i am printing following information in header , Posted Purchase invoice no ,vendor code and vendor name . I want to repeat this information every page
Thanks
What exactly have you tried?
i have tried changing properties as below , but its not working
Set PrintOnEveryPage to YES
Try this:
YourReport, Header (2) - OnPreSection()
CurrReport.SHOWOUTPUT := (CurrReport.PAGENO >= 1);
I had to do something similar (I guess) to what you want: I added another header to my report and add this line on the OnPreSection of the header.