Time Delay to Print Report

  • Thread starter Thread starter Lamar
  • Start date Start date
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.
 
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
 
Back
Top