Is there an equivalent to Thread.Sleep() in Access VBA?
Thread.Sleep()
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
1.4m articles
1.4m replys
5 comments
57.0k users