J
JimP
I have code that previews several reports. How can I close each report
(pause) before previewing the next report? e.g. the code below opens all
reports at the same time
Sub RunReports()
DoCmd.OpenReport "ReportA", acViewPreview
DoCmd.OpenReport "ReportB", acViewPreview
DoCmd.OpenReport "ReportC", acViewPreview
DoCmd.OpenReport "ReportD", acViewPreview
End Sub
(pause) before previewing the next report? e.g. the code below opens all
reports at the same time
Sub RunReports()
DoCmd.OpenReport "ReportA", acViewPreview
DoCmd.OpenReport "ReportB", acViewPreview
DoCmd.OpenReport "ReportC", acViewPreview
DoCmd.OpenReport "ReportD", acViewPreview
End Sub