Printing multiple copies

  • Thread starter Thread starter aran
  • Start date Start date
A

aran

I want to print the same report three times using the
command buttons, It doesnt seem to give an option of how
many copies you want is there a way?

Thanks in advance.
 
If you wish to always print this repoert three times when
this command button is clicked, just replicate the
docommand line three times in the on click event.
Hope this helps.
Fons
 
From a post by Fred

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

Jim
 
Back
Top