> how can i get the current thread to perform a call to
> thread.sleep()
>
> tia
> DaveP
System.Threading.Thread.Sleep(1000);
HTH,
Andy

Signature
You can email me by removing the NOSPAM parts below:
xmen40NOSPAM@gmxNOSPAM.net
> how can i get the current thread to perform a call to
> thread.sleep()
Just write System.Threading.Thread.Sleep(milliseconds); This causes the
current thread to sleep for the specified amount of time.
DaveP - 23 Sep 2007 17:57 GMT
thanks alot
i think im lil brain dead today lol
DaveP
>> how can i get the current thread to perform a call to
>> thread.sleep()
>
> Just write System.Threading.Thread.Sleep(milliseconds); This causes the
> current thread to sleep for the specified amount of time.