Well i have a problem like this:
since i can take 2 headers/body section of the same dataitem.
now the question is this
Can i print the other header/body on the next page.
like first one prints on one page and other one prints on the next new page?
Naushad Alam
Consultant -Navision
All e Technologies (P) Ltd.
Building Solutions for Extended Enterprises
www.alletec.com0
Comments
If you want to print alternative pages then do a check on the page no. in the OnPreSection: Then in the OnPreSection of the next data item Thats one way
You could always use a boolean check: OnPreSection (of your odd page section) OnPostSection OnPreSection (of your even page section) OnPostSection
Same result, just different ways to do it. The first would be easier to debug, but the second is much shorter to write
An even shorter version, maybe slightly more difficult to read, is:
For even pages, use
Alastair