Print report

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi

Can I send a report more than one time to the printer
from VBA code

The user click on print buttom and the report had to be
print 3 times

thanks
 
Hi

Can I send a report more than one time to the printer
from VBA code

The user click on print buttom and the report had to be
print 3 times

thanks

There are several ways to print the same report 3 times.
Here is one:
Code the command button click event:

DoCmd.SelectObject acReport, "ReportName", True
DoCmd.PrintOut , , , , 3
 
Back
Top