Print duplex

  • Thread starter Thread starter David C
  • Start date Start date
D

David C

Is there code somwhere that will allow me to optionally turn on the
duplexing of my printer via user selection, etc.? Thanks.

David
 
You can use the .Duplex method for a printer object. For example:

Sub SetPrinter()

Reports("yourReport").printer.Duplex = acPRDPHorizontal

end sub
 
Back
Top