peskywinnets
Registered User.
- Local time
- Today, 19:12
- Joined
- Feb 4, 2014
- Messages
- 578
I still consider myself fairly entry level at VBA (a complete kludger), as such I'm not particularly well versed in all the tools available in the VBA toolbox (&/or how to deploy), so please let me explain what I need...and perhaps some kind soul will tell me if it exists....
I'm prompting for user input, with something like this...
So the code will just sit there until a user enters something ...what I need is something that is timing how long it's been since arriving at that line of code ....& then if it breaches say 5 seconds, to break out & beep (I chose beep for simplicity) ...therefore I need a background timer that triggers an interrupt...does such a combo exist?
I'm prompting for user input, with something like this...
Code:
ScanBarcode = InputBox("Now Scan the PRODUCT Barcode")
So the code will just sit there until a user enters something ...what I need is something that is timing how long it's been since arriving at that line of code ....& then if it breaches say 5 seconds, to break out & beep (I chose beep for simplicity) ...therefore I need a background timer that triggers an interrupt...does such a combo exist?