No account? Register free
Forgot password?
This is a neat little Sub that will Cause a Pause or "Time Out" in your program.
InputsDuration (1 equals 1 Second, .5 equals a Half Second)
Side EffectsThis will cause the program to wait the specified duration before continueing.
Sub TimeOut (duration) StartTime = Timer Do While Timer - StartTime < duration X = DoEvents() Loop End Sub
No comments yet — be the first to post one!