R
robin9876
In a windows form application created in VS 2005 VB.Net I have one form
which calls another form and supplies a value. In this additional form
I need to return a value back. Below is the code to call the other
form.
Dim x As New myForm2
x.aValue = Me.TextBox1.Text
x.Show()
How can I return a value back from myForm2 back to myForm1 where the
above code is located on a button click event?
which calls another form and supplies a value. In this additional form
I need to return a value back. Below is the code to call the other
form.
Dim x As New myForm2
x.aValue = Me.TextBox1.Text
x.Show()
How can I return a value back from myForm2 back to myForm1 where the
above code is located on a button click event?