Problem with printing multiple copies of a report

J

Jeff

I read and follow the suggestion from this group to wrtie the code for a
print sub:

DoCmd.RunCommand acCmdSaveRecord
DoCmd.SelectObject acReport, "rptCertificate", True
DoCmd.PrintOut acPrintAll, , , , InputBox("Enter Number of Copies", _
"Print repCertificate", 1), 0

Access prints one copy even I put 2 in the InputBox or use
DoCmd.PrintOut acPrintAll, , , , 2, 0 in stead.

Thank you in advance for your help.
 

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