Quote Originally Posted by Inferrd View Post
Whilst I would encourage you to listen to the advice above, if you are just coding something quickly for yourself (or lazy like me ) you could always do it like:

Code:
        Label1.Text = "One"
        Label1.Refresh()
        Threading.Thread.Sleep(1000)
        '..etc....
        '.........
'or even.....
        Label1.Text = "One"
        Application.DoEvents()
        Threading.Thread.Sleep(1000)
        '..etc....
        '.........
This worked beautifully. Thank you.