Example #1
0
        private void businessToolStripMenuItem_Click(object sender, EventArgs e)
        {
            BizContacts frm = new BizContacts();

            frm.MdiParent = this;
            frm.Show();
        }
Example #2
0
        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();
        }