private void BtnStudy_Click(object sender, EventArgs e)//opens study form
        {
            frm07Study stud = new frm07Study();

            this.Hide();
            stud.Show();
        }
Esempio n. 2
0
        private void btnStudy_Click(object sender, EventArgs e) //opens study form
        {
            frm07Study stud = new frm07Study();                 //opens the study form when clicked

            this.Hide();
            stud.Show();
        }
        private void BtnStudy_Click(object sender, EventArgs e) //brings user to the study form (removed from final version)
        {
            frm07Study stud = new frm07Study();

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