private void UpdateBtn_Click(object sender, EventArgs e) { if (NameTb.Text != "" || PhoneTb.Text != "" || AddressTb.Text != "" || GenderTb.SelectedIndex != 0 || SalaryTb.Text != "") { if (TeacherIDTb.Text != "") { _teacher.Id = int.Parse(TeacherIDTb.Text); _teacher.Name = NameTb.Text; _teacher.Phone = PhoneTb.Text; _teacher.Address = AddressTb.Text; _teacher.Gender = GenderTb.Text; _teacher.Salary = int.Parse(SalaryTb.Text); _teacherService.UpdateTeacher(_teacher); MessageBox.Show("Record Updated Successfully!", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); TeacherIDTb.ResetText(); NameTb.ResetText(); PhoneTb.ResetText(); AddressTb.ResetText(); GenderTb.SelectedIndex = 0; SalaryTb.ResetText(); } else { MessageBox.Show("Please Enter a Teacher Id!", "Teacher Id is not provided", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } else { MessageBox.Show("Please Fill all fields!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void ClearBtn_Click(object sender, EventArgs e) { TeacherIDTb.ResetText(); NameTb.ResetText(); PhoneTb.ResetText(); AddressTb.ResetText(); GenderTb.SelectedIndex = 0; SalaryTb.ResetText(); }
private void DeleteBtn_Click(object sender, EventArgs e) { if (TeacherIDTb.Text != "") { _teacherService.DeleteTeacher(int.Parse(TeacherIDTb.Text)); MessageBox.Show("Record Deleted!", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); TeacherIDTb.ResetText(); NameTb.ResetText(); PhoneTb.ResetText(); AddressTb.ResetText(); GenderTb.SelectedIndex = 0; SalaryTb.ResetText(); } else { MessageBox.Show("Please Enter a Teacher Id!", "Teacher Id is not provided", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void InsertTile_Click(object sender, EventArgs e) { InsertTile.color = Color.FromArgb(242, 242, 242); SelectTile.color = Color.Wheat; DeleteTile.color = Color.Wheat; UpdateTile.color = Color.Wheat; ViewTile.color = Color.Wheat; HideTile.color = Color.Wheat; idGB.Visible = false; grid.Visible = false; detailsGB.Visible = true; UpdateBtn.Visible = false; DeleteBtn.Visible = false; InsertBtn.Visible = true; ClearBtn.Visible = false; TeacherIDTb.ResetText(); NameTb.ResetText(); PhoneTb.ResetText(); AddressTb.ResetText(); GenderTb.SelectedIndex = 0; SalaryTb.ResetText(); }