Printing multiple copies

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.
 
F

Fons Ponsioen

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
 
J

Jim/Chris

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
 
Top