vote up 0 vote down star
1

Is there an equivalent to Thread.Sleep in access- VBA?

flag

59% accept rate

1 Answer

vote up 5 vote down check

Declare Sub Sleep Lib "kernel32" Alias "Sleep" _ (ByVal dwMilliseconds As Long)

Use the following syntax to call the Sleep function:

Sub Sleep()
Sleep 1000 'Implements a 1 second delay
End Sub
link|flag
Ahh just found that my self. Thanks! – John Nolan Jan 22 at 14:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.