Time Delay to Print Report

L

Lamar

The user clicks a button to print the same report over and over again but
different clients. The code is looped. The user is actually printing the
report to Fax Printer to be faxed the different clients.

When the report is printed to the Fax Printer it prompts the user to hit
'OK'. The problem Access is keeping printing the other reports before the
user can hit 'OK'. This is causing problems for the Fax Printer.

So how can I have a 10 second delay between the reports printing? I could
not figure out the TimerInterval. Thanks for any help.
 
S

Stuart McCall

Lamar said:
The user clicks a button to print the same report over and over again but
different clients. The code is looped. The user is actually printing the
report to Fax Printer to be faxed the different clients.

When the report is printed to the Fax Printer it prompts the user to hit
'OK'. The problem Access is keeping printing the other reports before the
user can hit 'OK'. This is causing problems for the Fax Printer.

So how can I have a 10 second delay between the reports printing? I could
not figure out the TimerInterval. Thanks for any help.

startTime = Timer
Do While Timer < startTime + 10
DoEvents
Loop
 

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