wait or sleep function in vb8?

  • Thread starter Thread starter Joe
  • Start date Start date
Joe said:
just looking but cannot find anything... anyone have an idea?
Threading.Thread.Sleep(MilliSeconds)


ShaneO

There are 10 kinds of people - Those who understand Binary and those who
don't.
 
just looking but cannot find anything... anyone have an idea?


System.Threading.Thread.Sleep(milliseconds here).

..NET also has a wide array of other methods to suspend a thread such as
ManualResetEvent and AutoResetEvent classes. These are actually quite neat
if you need to "hold" a thread until sometime else happens.
 
Back
Top