Change Report Print Quality

R_J_Potter@msn.com

Registered User.
Local time
Yesterday, 22:22
Joined
Nov 4, 2011
Messages
29
Okay, I'm drawing a complete blank on how to modify the Print Quality for a report. :banghead:

In report view, the Report has a Print Button that executes Macro "Action = PrintObject"

I just want the report to print after I press the Button. It does print, but just too fast...

Some where, I've set the Print Quality = "Quick Print" (Fast)

I want to change that to "Normal" Quality Print...
All my other reports print okay "Normal" Quality Print...
 
Last edited:
well that strikes me a bit weird
it just gets printed without confirmation
its not even asking for which printer to use?
 
well that strikes me a bit weird
it just gets printed without confirmation
its not even asking for which printer to use?
It won't ask if you have it set to use the default printer or a connected specific printer.

If you were printing a job number label (for instance) and had the "JobLabel" printer connected, you would get mighty cheesed off, very quickly, if it asked you every time "Do you want to print to JobLabel ?"
 
then isted of macro try tis code

DoCmd.PrintOut acPrintAll, 1, , acMedium, 1

it will print the whole report in medium quality

if you don't know how to use it just create a new button right clik choose build event
code builder
and paste it there


Private Sub Command13_Click()

DoCmd.PrintOut acPrintAll, 1, , acMedium, 1


End Sub
 

Users who are viewing this thread

Back
Top Bottom