Is there an equivalent to Thread.Sleep() in Access VBA?
|
Use the following syntax to call the Sleep function:
|
||||
|
|
|
A couple of amendments are required to get the code to work. The code below is the corrected version.
|
||||
|
|
|
Another way without using kernel32:
|
|||
|
|
|
Adding
somehow created additional problems somewhere else in my code. I ended up using this function that I found on an other forum and tweeked a bit:
hope this helps :) |
|||
|
|
I use this in Excel and it works great:
DateAdd() is a function that set a time, relative to See also for more detail about the use of the |
||||
|
I like to use one of these ways: http://www.tomasvasquez.com.br/blog/microsoft-office/vba/como-implementar-um-atrasoespera-no-vba Some of them only works in Excel, but it can help you anyway. Regards |
|||
|
|