Craeting a delay in VB 2010-VBForums - VBForums - Visual Basic and VB .NET Discussions and More!
That's what sleep does, and it is almost never a good idea in the UI thread for that very reason. What you need to do is put a timer on the form, and redesign your logic to use it. That's what timers are for. Set the interval to 500, and perform your chan...