Print specified no. of copies of Report

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
 
D

David Lloyd

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
 
D

David C. Holley

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
 

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

Top