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
 

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