I wish to if someone types something in a textbox that it shows up in a label..but on another form...so say in the textbox i type in "Sharpy" then "Sharpy" shows up on another form.
Sharpy 0 Newbie Poster
Recommended Answers
Jump to PostChange this line:
Form2.Text1.Text = Form1.Text1.Textto this:
Form2.Label1.Caption = Text1.TextOr did you not want to use a command button?
You could try Text1_Change, instead of Command1_Click.If you don't want Form2 to show at this point, then use "Load Form2" earlier, then you can Show …
Jump to PostGlad I could help
All 6 Replies
mwaora 0 Newbie Poster
Sharpy 0 Newbie Poster
w00dy 1 Junior Poster in Training
Sharpy 0 Newbie Poster
w00dy 1 Junior Poster in Training
jwshepherd 0 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.