Beispiel #1
0
        private void doctorsInformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var f = new frmDoctorsInformation {
                MdiParent = this
            };

            f.Show();
        }
Beispiel #2
0
        private void btnAddDoctor_Click(object sender, EventArgs e)
        {
            frmDoctorsInformation doc = new frmDoctorsInformation();

            doc.Show();
        }