Passing Data Between Forms

  • Thread starter Thread starter Michael C
  • Start date Start date
M

Michael C

What's the best wat to pass data between two separate forms. For instance,
Form1 invokes Form2 like this:

Form z = new Form2();
z.Show();

How can I pass back strings and boolean values from Form2 to Form1?

Thanks,

Michael C.
 
Micheal,

there are many ways to do this. One of those is

//define form1.
Form pForm1 = new Form();

//during launch of Form 2 do this
Form pForm2 = new Form( pForm1); //pass in constructor.
pForm2.ShowDialog(); or pForm.Show();

//Once when Form2 is displayed, to pass value back to form Set through
properties

example .
mForm1.Mybool = Form2.TestBool;

mForm1 is a member in Form2 which is received in constructor. You can
access public variables and internal variables of Form1 in Form2. The other
ways do is by defining event handlers and delegates.

Shak
 
Cool, I was trying to decide if passing the form to the constructor like you
did would be better than using public static variables, etc. I'll use your
method. Thanks!

Michael C.
 
Back
Top