[Help]Sleep/Pause[Solved]
whats the wait code in visual basic 2008? thanks >.<
How long are you trying to make it wait for?
Sleep() function in the kernel32 library. I think for VB you have to declare these things manually. After you've done this.
Sleep(milliseconds)
In vb 2008
the code to pause a thread is simply:
Threading.thread.pause(1000)
Where 1000 = milliseconds
Obama is right. thanks for helping
Hey on mine
system.threading.thread.sleep(1000) works
and
threading.thread.sleep(1000) work but
these don't work
system.threading.thread.pause(1000)
or
threading.thread.pause(1000)
it may be system.threading.thread.suspend
I'm going by memory, I don't use them often