Quote Originally Posted by TysonLPrice View Post
If anyone cares it all started here:

http://www.tek-tips.com/viewthread.cfm?qid=1704640
You know why you got everybody confused when you posted your question don't you? When you tried to answer the other thread's OP you changed his code.

Here is the original question
greathope123 (Programmer)
18 Feb 13 3:58
Hi,

When start my VB.Net program, the behaviou of Textbox and Lablel are different:
Code:
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?
The original OP wasn't putting his code in the TextBox2_TextChanged, he was putting it in TextBox1_TextChanged!!