Software Development Network>> VS Express Editions>> Opening another form from a form.
Assuming the parent form is called Form1 and the child form is called Form2. These two lines should give you what you need (from http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=179898&SiteID=1):
Form2 childFrm = Form2();childFrm.ShowDialog(this);
Opening another form from a form.
koulbassa
Assuming the parent form is called Form1 and the child form is called Form2. These two lines should give you what you need (from http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=179898&SiteID=1):
Form2 childFrm = Form2();
childFrm.ShowDialog(this);