Re: launch a form from within another
From: ilPostino (news_at_ip80.com)
Date: 04/04/04
- Next message: Paul E Collins: "Re: (DateTime) or DateTime.Parse ?"
- Previous message: James Curran: "Re: [Feature Request] "first:" "last:" sections in a "foreach" block"
- In reply to: Tammy: "launch a form from within another"
- Next in thread: Tammy: "Re: launch a form from within another"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 4 Apr 2004 11:19:54 -0400
Just create an instance of the form and show it;
eg: Form is called myForm.
MyForm myform2 = new MyForm();
myform2.Show();
or
myform2.ShowDialog();
-p
"Tammy" <tdean@thewavz.com> wrote in message
news:OdXw8dlGEHA.4012@TK2MSFTNGP09.phx.gbl...
> How do I launch a form from within another?
> The book I have only talks about MDI forms and I know that there should be
a
> way to do that
> without the MDI form.
>
>
- Next message: Paul E Collins: "Re: (DateTime) or DateTime.Parse ?"
- Previous message: James Curran: "Re: [Feature Request] "first:" "last:" sections in a "foreach" block"
- In reply to: Tammy: "launch a form from within another"
- Next in thread: Tammy: "Re: launch a form from within another"
- Messages sorted by: [ date ] [ thread ]