Pause Between two reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Wahab said:
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.

How about opening the second report in the close event of the first one?
 
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
 
Back
Top