private void businessToolStripMenuItem_Click(object sender, EventArgs e) { BizContacts frm = new BizContacts(); frm.MdiParent = this; frm.Show(); }
private void BusinessToolStripMenuItem_Click(object sender, EventArgs e) { BizContacts frm = new BizContacts(); //set the main form as the parent of each bussiness form frm.MdiParent = this; frm.Show(); }