Link to home
Start Free TrialLog in
Avatar of wellesleydpw
wellesleydpw

asked on

Printing Multiple Reports in order with Multiple Copies

I have 5 reports that need to be printed in order.  I would like the user to click a button on a form that would print the reports in order and I would like the print dialog to come up so that the user can choose the printer, the number of copies and other printer options.

Can this be done?

Jeff
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

DoCmd.OpenReport "Catalog", acViewPreview
DoCmd.RunCommand acCmdPrint
'Repeat for the other reports
ASKER CERTIFIED SOLUTION
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wellesleydpw
wellesleydpw

ASKER

boag2000,
that prompts the user for each report.  Is there a way that the user will be prompted once and all the reports can print with those settings?
Jeff
<user will be prompted once and all the reports can print with those settings?>
This requirement was not explicitly stated in your original post.

My post does what was requested.
Your new specifics will require a far amount of custom coding

So perhaps another Expert will chine in

JeffCoachman
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It seems as though there's no easy solution here.  Thank you for your help.