Sleep function

  • Thread starter Thread starter Gabi
  • Start date Start date
G

Gabi

Hi all,
is there any system call on vb that is similler to
"Sleep(xxx)" on c++
if so can you give me its format thanks.

Thanks
 
* "Gabi said:
is there any system call on vb that is similler to
"Sleep(xxx)" on c++
if so can you give me its format thanks.

The code below will pause the current thread for 2 seconds:

\\\
System.Threading.Thread.Sleep(2000)
///
 
Back
Top