double side print

I

iccsi

DoCmd.OpenReport stDocName, acNormal I have above code to print my
report and always comes single side print even I set printer to double
side print from control panel printer setting.


ift only print double side when I use following preview and set print
setting from dialog.

DoCmd.OpenReport stDocName, acPreview

any information is great appreciated,
 
C

Clifford Bass

Hi,

After you print it manually, while it is still open, save it (File,
Save). That should save the duplex setting. Note that if you then change
the printer you are using, you may need to repeat the process.
Alternatively, you could try placing the following in the report's On Open
event:

Me.Printer.Duplex = acPRDPHorizontal

Clifford Bass
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top