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
 
Thank you very much Rick ; Appreciate your thinking.
Why I dont think like you?
 

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

Back
Top