Passing datas from one form to another on two opened instances

AnuPalavila

New member
Joined
Jun 8, 2007
Messages
3
Programming Experience
Beginner
Hai
I have two forms opened in my mdiparent form1 and form2 I want to pass the value form a textbox of from1 to form2 textbox in the opend instance of the form2 when I click the button in form1

Thank & Regards
Anu Palavila
 
Given that you are using default form instances, simply:
VB.NET:
form2.textbox1.text = "new text"
 
Back
Top