Page 1 of 1

duplex print

Posted: Thu Apr 13, 2023 8:07 am
by simon ren
When printing documents in bulk, how to ensure that the starting page of each document is printed on the front if double-sided printing is selected?
For example:
I choose duplex print when printing.
A document has more than one page, A will be printed on double-sides of the first page.
B document has one page ,B will be printed on the front of the second page.
C document has one page , C will be printed on the reverse side of the second page.

How to print document C on the front of the third page?

Thank you very much.

Re: duplex print

Posted: Thu Apr 13, 2023 8:29 pm
by Lech Kulikowski
Hello,

Unfortunately, there are no standard options for that task.

You can implement it in your code. You can merge all reports that should be print in one and if the starting page of the next report is odd, then add a blank page.

Thank you.

Re: duplex print

Posted: Fri Apr 14, 2023 2:55 am
by simon ren
Thank you for your reply.

Can we insert a blank page during stimulsoft reports rendering process? Or can we insert a blank page after rendering is completed?
Can you provide us with a method for inserting a blank page?

Thank you very much.

Re: duplex print

Posted: Mon Apr 17, 2023 9:51 am
by Lech Kulikowski
Hello,

As a way, you can add an Empty page with the Enabled = "(PageNumber % 2 == 0)" property.

Thank you.

Re: duplex print

Posted: Tue Apr 18, 2023 2:59 am
by simon ren
Hello,

I got it, thank you very much.

Re: duplex print

Posted: Tue Apr 18, 2023 8:34 am
by Lech Kulikowski
Hello,

You are welcome.