Hi all,
First post!
Learning vb.net
the following is the button handler code:
TextBox1.text = "Sleeping"
Thread.Sleep(50 0)
TextBox1.text = "Done!"
Why is the first line being ignored?
TextBox stays empty until after Sleep() then shows "Done" message...
Thanks for any help!
First post!
Learning vb.net
the following is the button handler code:
TextBox1.text = "Sleeping"
Thread.Sleep(50 0)
TextBox1.text = "Done!"
Why is the first line being ignored?
TextBox stays empty until after Sleep() then shows "Done" message...
Thanks for any help!
Comment