
December 8th, 2004, 04:50 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Looking for one command to print multiple reports
Please help me. I have designed a Form called "frmFormName" where the user can enter the required parameters and on clicking the print command in the form, it should print 5 reports.
The following are the script. can you please correct the script and help me. I am a new user.
Private Sub Print_Click()
Docmd.OpenReport "Report1", acViewNormal
Docmd.OpenReport "Report2", acViewNormal
Docmd.OpenReport "Report3", acviewNormal
Docmd.Openreport "Report4", acviewNormal
Docmd.Openreport "Report5", acviewNormal
Docmd.close acForm, "frmFormName"
Appreciate all your help in forwarding me a corrected script that would help me run five report at a time with the same parameters
Brendan
|