private void btnLog_Out_Click(object sender, EventArgs e) { frmLoggingIn FL = new frmLoggingIn(); this.Hide(); FL.ShowDialog(); }
private void btnLogout_Click(object sender, EventArgs e) { //Goes back to the log in page. frmLoggingIn LogIn = new frmLoggingIn(); this.Hide(); LogIn.ShowDialog(); }