Passing Data Between Forms

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.
 
S

Shakir Hussain

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
 
M

Michael C

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top