G
Guest
This should be easy but I am obviously not getting it. I need to be able to
click a button on form1 and it opens up form2. The user needs to be able to
do some input on form2, send it back to form1, and then form2 can close. How
do I do this?
I have been using from Form1:
Form2 newForm = new Form2();
newForm.ShowDialog();
This will bring up the new form and work but there is no link between the
two forms.
Any help would be appreciated, sorry for the ignorance.
-LMIT
click a button on form1 and it opens up form2. The user needs to be able to
do some input on form2, send it back to form1, and then form2 can close. How
do I do this?
I have been using from Form1:
Form2 newForm = new Form2();
newForm.ShowDialog();
This will bring up the new form and work but there is no link between the
two forms.
Any help would be appreciated, sorry for the ignorance.
-LMIT