private void pictureBox2_Click(object sender, EventArgs e)
        {
            this.Close();
            Teacher th = new Teacher();

            th.Show();
        }
        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
            Teacher th = new Teacher();

            th.Show();
        }
Exemple #3
0
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     newTeacher           = new Teacher(this);
     newTeacher.MdiParent = this;
     newTeacher.Show();
 }
Exemple #4
0
 private void toolStripButton1_Click(object sender, EventArgs e)
 {
     newTeacher           = new Teacher(this);
     newTeacher.MdiParent = this;
     newTeacher.Show();
 }