Re: launch a form from within another

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

From: ilPostino (news_at_ip80.com)
Date: 04/04/04


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