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);