I have the following in my code.
Code:DoCmd.OpenReport "repRoster"
How do I print 12 copies when i run this code?
I have the following in my code.
Code:DoCmd.OpenReport "repRoster"
How do I print 12 copies when i run this code?
One way:
DoCmd.OpenReport "repRoster", acViewPreview
DoCmd.PrintOut acPages, , , , 12
DoCmd.Close acReport, "repRoster", acSaveNo
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.