Duplex Printing Issue (1 Viewer)

NSAMSA

Registered User.
Local time
Today, 06:47
Joined
Mar 23, 2014
Messages
66
Hi all:

I'm having an issue with a report I want to print double sided. I used the following vba on an a button:

Private Sub Command109_Click()

DoCmd.OpenReport "rptBFForm2side", acPreview

Reports("rptBFForm2side").Printer.Duplex = acPRDPHorizontal
End Sub

The issue is that the back sheet prints upside down, while my customer would prefer that the two sides have the same orientation. Is there a piece of code I could add in that would make the second side orient 180 degrees from its original position?

Regards
 

NSAMSA

Registered User.
Local time
Today, 06:47
Joined
Mar 23, 2014
Messages
66
Perfect... I figured there was an easy solution. Thank you!
 

JHB

Have been here a while
Local time
Today, 15:47
Joined
Jun 17, 2012
Messages
7,732
You're welcome, good luck. :)
 

Users who are viewing this thread

Top Bottom