Question textbox + label

Jeff.

New member
Joined
Jan 25, 2010
Messages
1
Programming Experience
Beginner
ive been trying for days to try to figure this out out on my own , and im wondering how i can have the user enter a string into a textbox and press a button and have that text appear on a label. thanks
 
Your simply setting the Text property of the label.
VB.NET:
Private Sub Button1_Click(...) 
   label1.Text = textbox1.Text
End Sub
 
Back
Top