Report resolution fix, maybe

murray83

Games Collector
Local time
Today, 10:58
Joined
Mar 31, 2017
Messages
871
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
1763317994056.png
 
can't you manually Default printer to print on 600x600 resolution.
i think you can.
 
I don't know if this will help:
https://learn.microsoft.com/es-es/office/vba/api/access.printer.printquality
Code:
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.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom