private void BtnHome_Click(object sender, EventArgs e) { this.Visible = false; FormPatient fp = new FormPatient(this.GetId); fp.Visible = true; }
//Login button private void TileLogin_Click(object sender, EventArgs e) { //If all fields are okay if (!string.IsNullOrWhiteSpace(this.txtId.Text) && !string.IsNullOrWhiteSpace(this.txtPassword.Text) && this.cmbRole.SelectedIndex != -1) { if (LoginConfirmation()) { MessageBox.Show("Login Succesfull!"); //Check Role Condition if (this.cmbRole.Text == "Admin") { this.Visible = false; Admin.FormAdmin fa = new Admin.FormAdmin(this.txtId.Text); fa.Visible = true; } else if (this.cmbRole.Text == "Doctor") { this.Visible = false; Doctor.FormDoctor fd = new Doctor.FormDoctor(this.txtId.Text); fd.Visible = true; } else if (this.cmbRole.Text == "Patient") { this.Visible = false; Patient.FormPatient fp = new Patient.FormPatient(this.txtId.Text); fp.Visible = true; } else if (this.cmbRole.Text == "Hospital") { this.Visible = false; Hospital.FormHp fh = new Hospital.FormHp(this.txtId.Text); fh.Visible = true; } } else { MessageBox.Show("Invalid Credentials"); } } else { MessageBox.Show("Enter all the fields first!"); } }