The code below is still only printing 1 copy to the default printer. Any ideas?
DoCmd.OpenReport "rptworkauth", acViewDesign, Null, Null, acHidden
Dim oRpt As Report
Set oRpt = Reports(0)
oRpt.Printer = Application.Printers("Savin C3333 PCL Color")
With oRpt.Printer
.Copies = 2...