depending on your needs, you might be able to use:
MsgBox "Pause message here"
You could use the Windows API.
Place this line in a code module:
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Use this in you code to stop your application:
Sleep (10000)
This example would be 10000 milliseconds or 10 seconds, one minute would be 60000
Hope this helps.
Jerid
Cool stuff. Where can I find a good resource to
help with other API calls?
Go to http://www.allapi.net/ and download their API-Guide
It's the best reference Ive found so far.
Jerid
Thank you both.
Sleedp command worked perfectly.
Looks like a lot of good stuff. I could always
see the function name, but couldn't find the
parameters. Many thanks.