Screen dump after report printout

  • Thread starter Thread starter george tracey
  • Start date Start date
G

george tracey

I have a form with command buttons that cause reports to be printed out.
On reports being printed there follows an end page with a screen dump of
the form that contains the button activating the report print out.
Is there any way to stop this?
 
I have never seen this happen. Could you share the code or macro that prints
the report?
 
The code below is responsible


#####
MsgBox "Please ensure sufficient paper in Laser Printer", vbOKOnly, "Name of
Report"
DoCmd.OpenReport "ReportName"
DoCmd.PrintOut
#####
 
Back
Top