greathope123
Programmer
Hi,
When start my VB.Net program, the behaviou of Textbox and Lablel are different:
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
TextBox2.Text = "222222222222"
Label4.Text = "4444444444444"
End Sub
TextBox2 will show "222222222222" but Label4 wont show anything!
What I am doing wrong?
When start my VB.Net program, the behaviou of Textbox and Lablel are different:
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
TextBox2.Text = "222222222222"
Label4.Text = "4444444444444"
End Sub
TextBox2 will show "222222222222" but Label4 wont show anything!
What I am doing wrong?