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
 
Top