Page 1 of 1

Print the even-numbered cout of pages

Posted: Tue Jun 10, 2014 8:00 am
by LukasT
Hello,
our customer needs to print some report the even-numbered count of pages. So, if the DataBand fits on only one page, I have to see two pages (with footer bands). If the DataBand is on 3 pages, I must see 4 pages. How to do it?
Thank you.

Re: Print the even-numbered cout of pages

Posted: Tue Jun 10, 2014 10:40 am
by Alex K.
Hello,

Please try to place the Footer band after databand and set the NewPageAfterPrint property to true.

Thank you.

Re: Print the even-numbered cout of pages

Posted: Tue Jun 10, 2014 11:58 am
by LukasT
Please, the property must be where? And I need to have the even-numbered count of pages even in case of DataBand with height of two pages... so I will see two pages.

Re: Print the even-numbered cout of pages

Posted: Tue Jun 10, 2014 12:48 pm
by LukasT
I just see..... on the FooterBand... but it prints new page before even if the NewPageAfter is true. I am expecting, that new page will be after DataBand...

Re: Print the even-numbered cout of pages

Posted: Wed Jun 11, 2014 10:45 am
by HighAley
Hello.

Please, try to add a page to the report template and set its Condition with next expression:

Code: Select all

PageNumber%2==0
Report.mrt
(4.11 KiB) Downloaded 252 times
Thank you.