The UseWaitCursor applies to a specific control and all its child controls. This means that the cursor will change to a wait cursor when it is over that control or control group only. You would call it such ...

Code:
Me.UseWaitCursor = True
Threading.Thread.Sleep(5000)
Me.UseWaitCursor = False
It only works, however, when that control or control group is actually processing code. This means you can't just set...