Print specified no. of copies of Report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to specify the number of copies of a report that I need to print. I
tried setting Application.Printer.Copies = 5 still my printer prints just one
copy. Is there any solution to this problem?

Help will be appreciated.
Thankyou
 
One approach would be to use the Docmd.PrintOut method. It has a parameter
to specify the number of copies.


--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


I want to specify the number of copies of a report that I need to print. I
tried setting Application.Printer.Copies = 5 still my printer prints just
one
copy. Is there any solution to this problem?

Help will be appreciated.
Thankyou
 
You sould be able to use a simple For..Loop attached to a command button.

For I = 1 to Me![txtNumberOfCopies]
DoCmd.OpenReport (parameters)
next I
 
Back
Top