hi... i was just wondering if there was some sort of command to wait a certain number of seconds before it went on to do the next command. If i need to do this a certain way with complex code, show the code if you could.
hi... i was just wondering if there was some sort of command to wait a certain number of seconds before it went on to do the next command. If i need to do this a certain way with complex code, show the code if you could.
timed events
Laiko
hi,
after you statment put this line
Application.DoEvents()
hope that helps
Trev
threading.thread.sleep(100) 'wait for .1 seconds
Information at: http://msdn2.microsoft.com/en-us/library/d00bd51t.aspx
Ed
banchuan
Richard III
ok... but wheni put it multipletimes during a subroutine it only does it once i want it to do something (wait) do something (wait) in order.