Print a report without the printer selector screen appearing

SuperSlick

New member
Local time
Yesterday, 18:34
Joined
Apr 28, 2012
Messages
5
I am using Access 2010. I want to print a report directly to a printer without the printer selector screen appearing.

I really need help with this.

Thank you
 
OpenReport with the appropriate arguments will print the report to the default printer.
 
Try something like below:

DoCmd.OpenReport "rptOrderDetailsMorning", acViewPreview, "", "", acNormal
DoCmd.PrintOut

Using "PrintOut" should help you in direct print.

best regards.
 

Users who are viewing this thread

Back
Top Bottom