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(); }
private void btnHistory_Click(object sender, EventArgs e) { Form history = new AcademicHistory(); history.Show(); }