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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top