duplex print

Stimulsoft Reports.NET discussion
Post Reply
simon ren
Posts: 68
Joined: Wed Nov 21, 2018 12:51 am

duplex print

Post 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.
Lech Kulikowski
Posts: 6243
Joined: Tue Mar 20, 2018 5:34 am

Re: duplex print

Post 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.
simon ren
Posts: 68
Joined: Wed Nov 21, 2018 12:51 am

Re: duplex print

Post 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.
Lech Kulikowski
Posts: 6243
Joined: Tue Mar 20, 2018 5:34 am

Re: duplex print

Post by Lech Kulikowski »

Hello,

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

Thank you.
Attachments
ReportSample.mrt
(5.06 KiB) Downloaded 69 times
simon ren
Posts: 68
Joined: Wed Nov 21, 2018 12:51 am

Re: duplex print

Post by simon ren »

Hello,

I got it, thank you very much.
Lech Kulikowski
Posts: 6243
Joined: Tue Mar 20, 2018 5:34 am

Re: duplex print

Post by Lech Kulikowski »

Hello,

You are welcome.
Post Reply