Have a report which is being printed in 1200x1200 resolution. The workaround is to go into the printer properties and manually set it to 600x600 every time. Is there a way i can set it to be 600 * 600 by default
Private Sub Report_Open(Cancel As Integer)
' VBA constants
'acPRPQDraft
'acPRPQLow
'acPRPQMedium
'acPRPQHigh
Me.Printer.PrintQuality = acPRPQDraft ' Draft
End Sub
If not, you could create another printer with the desired settings and change the default printer before printing the report.