Pause Between two reports

W

Wahab

Hi
Please help me with the following problem:
I have created a Preview button. On the button I want to preview two
reports how I will give pause between reports. Now I can see only the
second report, Please help me.

DoCmd.OpenReport “Report No.1â€, acViewPreview
DoCmd.OpenReport “Report No.2â€, acViewPreview
Thanks in advance.
 
F

fredg

Hi
Please help me with the following problem:
I have created a Preview button. On the button I want to preview two
reports how I will give pause between reports. Now I can see only the
second report, Please help me.

DoCmd.OpenReport ´Report No.1¡, acViewPreview
DoCmd.OpenReport ´Report No.2¡, acViewPreview
Thanks in advance.

Just change the order:
DoCmd.OpenReport ´Report No.2¡, acViewPreview
DoCmd.OpenReport ´Report No.1¡, acViewPreview
 

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