Exemple #1
0
        private void button6_Click(object sender, EventArgs e)
        {
            //MessageBox.Show("This is Academic History", "Academic History",
            //    MessageBoxButtons.OK, MessageBoxIcon.Hand);
            Form academicHistory = new AcademicHistory();

            academicHistory.Show();

            // for testing purposes as there is no user profile button

            // Form userProfile = new UserProfile();
            // userProfile.Show();

            // for testing purposes to not ruin other code

            //Form registration = new Registration();
            //registration.Show();
        }
Exemple #2
0
        private void btnHistory_Click(object sender, EventArgs e)
        {
            Form history = new AcademicHistory();

            history.Show();
        }