View Full Version : Send 2 copies of the report to print


smd7m
07-23-2009, 11:21 PM
What do I use code , that; with send report to print, two copies of the report will be printed?

Scooterbug
07-24-2009, 06:15 AM
Just copy the line of code that prints the report and put it after the first line like this:


DoCmd.OpenReport stDocName, acNormal
DoCmd.OpenReport stDocName, acNormal


Where stDocName is the name of the report

smd7m
07-24-2009, 02:07 PM
How Open the Printer Dialog (or for sample work Ctrl+P) by Madual (Code) ?

Scooterbug
07-27-2009, 05:51 AM
Go into form design. I am assuming that the printing is done via a button. Right click on the button and select Build Event. The code is there.