private void SignUp_Click(object sender, EventArgs e) { // ------------------ CLICKING THE THIS BUTTON WILL LET YOU MAKE AN ACCOUNT -------------------- // Clicking on the signup button, previous page will dissapear and signup page is displayed this.Hide(); signup ss1 = new signup(); ss1.Show(); }
private void signupbutton_Click(object sender, EventArgs e) { // ------------------ CLICKING THE SIGNUP BUTTON WILL LET YOU MAKE AN ACCOUNT SO THAT // YOU CAN ACCESS TIMETABLE FUNCTIONALITIES -------------------- // this will hide the previous page and will show the next requested page this.Hide(); signup ss1 = new signup(); ss1.Show(); }