Ejemplo n.º 1
0
        private void studentDetailsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmStudentDetails studForm = new frmStudentDetails();

            studForm.MdiParent = this;

            studForm.Show();
        }
Ejemplo n.º 2
0
        private void btn_student_Click(object sender, EventArgs e)
        {
            frmStudentDetails studentDetailsForm = new frmStudentDetails();

            Hide();
            studentDetailsForm.ShowDialog();
            Show();
        }
Ejemplo n.º 3
0
        private void menuVDetails_Click(object sender, EventArgs e)
        {
            frmStudentDetails studDet = new frmStudentDetails();

            studDet.MdiParent = this;
            GlobalVar.frmCtrSD++;
            studDet.Text += " " + GlobalVar.frmCtrSD.ToString();
            studDet.Show();
        }