private void btnRoutine_Click(object sender, EventArgs e)
        {
            frmRoutine frm = new frmRoutine(StudentId);

            frm.Show();
            this.Hide();
        }
Beispiel #2
0
        private void routineToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmRoutine frm = new frmRoutine(StudentID);

            frm.Show();
            this.Hide();
        }