Print Count

  • Thread starter Thread starter Michael Kintner
  • Start date Start date
M

Michael Kintner

How can I tell a report to print 5 copies?

VB Code Please....

Thank you in advance for any help... (smile)

Mike
 
How can I tell a report to print 5 copies?

VB Code Please....

Thank you in advance for any help... (smile)

Mike

From a command button on a form?

Code the command button click event:
DoCmd.SelectObject acReport, "rptName", True
DoCmd.PrintOut , , , ,5

If the report is already open in Preview mode, change True to False.

If you wish to have the user enter the number of copies each time,
then use an unbound control on the form.
Change the PrintOut to:
DoCmd.PrintOut, , , , Me!ControlName
 

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