question

jeremyd

Newcomer
Joined
Sep 28, 2004
Messages
4
how do you send text from a text box to a label on another form im working on a project that is a testing form so the program grades the users test and displays a printable report at the end...and help or tips would be appreciated i am using vb.net
 
if form1 has the text and form2 has the label

You can use this code in form2 somewhere
Code:
dim frm as NEW FORM1
label1.text = frm.textbox1.text
 
techmanbd said:
if form1 has the text and form2 has the label

You can use this code in form2 somewhere
Code:
dim frm as NEW FORM1
label1.text = frm.textbox1.text
also doing dropdown menus...i havent used VB since vb3 so im trying to re-learn everything
 
Back
Top