예제 #1
0
        private void btnStudy_Click(object sender, EventArgs e) //opens study form
        {
            frmStudy stud = new frmStudy();                     //opens the study form when clicked

            this.Hide();
            stud.Show();
        }
예제 #2
0
        private void BtnStudy_Click(object sender, EventArgs e)
        {
            frmStudy stud = new frmStudy();

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

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