vote up 10 vote down star
2

This might seem an easy question, but Im having a temporary brain failure moment!

flag

Re-tagged to VB.NET as the answer works there as well. – DrFloyd5 Aug 14 at 21:01
No DrFloyd5, ; doesn't works on VB.NET, right? – Zanoni Aug 14 at 21:04

5 Answers

vote up 21 vote down check
System.Threading.Thread.Sleep(50);

Remember though, that doing this in the main GUI thread will block your GUI from updating (it will feel "sluggish")

link|flag
vote up 4 vote down
Thread.Sleep
link|flag
vote up 10 vote down

Use this code

using System.Threading;
// ...
Thread.Sleep(50);
link|flag
vote up 2 vote down
Thread.Sleep(50);

The thread will not be scheduled for execution by the operating system for the amount of time specified. This method changes the state of the thread to include WaitSleepJoin.

This method does not perform standard COM and SendMessage pumping. If you need to sleep on a thread that has STAThreadAttribute, but you want to perform standard COM and SendMessage pumping, consider using one of the overloads of the Join method that specifies a timeout interval.

Thread.Join
link|flag
vote up 15 vote down

You can't specify an exact sleep time in Windows. You need a real-time OS for that. The best you can do is specify a minimum sleep time. Then it's up to the scheduler to wake up your thread after that. And never call .Sleep() on the GUI thread.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.