Re: Passing Data Between Forms
From: Michael C (michaelco_at_optonline.net)
Date: 06/20/04
- Next message: John Wood: "Re: Subcontrols"
- Previous message: Shakir Hussain: "Re: Subcontrols"
- In reply to: Shakir Hussain: "Re: Passing Data Between Forms"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 20 Jun 2004 03:55:08 GMT
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.
"Shakir Hussain" <shak@fakedomain.com> wrote in message
news:uRe$L%23mVEHA.1356@TK2MSFTNGP09.phx.gbl...
> 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
>
>
> "Michael C" <michaelco@optonline.net> wrote in message
> news:U43Bc.27161$V57.6436933@news4.srv.hcvlny.cv.net...
> > 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.
> >
> >
>
>
- Next message: John Wood: "Re: Subcontrols"
- Previous message: Shakir Hussain: "Re: Subcontrols"
- In reply to: Shakir Hussain: "Re: Passing Data Between Forms"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|