Turn off double-sided printing (1 Viewer)

ErinL

Registered User.
Local time
Today, 00:01
Joined
May 20, 2011
Messages
118
Hello Everyone!

I have seen many posts regarding how to turn on double-sided printing through code but I actually have the opposite problem and I can't find any solutions that have worked.

In order to be as green as possible, our printers are set up for duplex printing.

I have an Access 2010 database that creates discipline notices. This report, no matter what I try, will not print multiple notices on separate pieces of paper. Because they are discipline notices and are handed out to the associates, they must print on separate papers to maintain confidentiality.

Can anyone help me with this issue? Thank you in advance.
 

apr pillai

AWF VIP
Local time
Today, 10:31
Joined
Jan 20, 2005
Messages
735
You may try out the code presented on the following link:

Network and Report Page Setup

Add a line of code (the second line) after the following line as shown below:
Code:
.
.
DM.intPaperSize = DM_PAPERSIZE
[B]DM.intDuplex = 1[/B]
.
.

Remove the following lines from the Code that changes the Report Page Orientation:

Code:
If DM.intOrientation = DM_PORTRAIT Then
            DM.intOrientation = DM_LANDSCAPE
End If
 
Last edited:

Users who are viewing this thread

Top Bottom