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; RollNoTb.ResetText(); NameTb.ResetText(); FatherNameTb.ResetText(); GenderTb.Text = "Select One"; PhoneTb.ResetText(); AddressTb.ResetText(); SessionTb.ResetText(); AdminDateValue.ResetText(); ClassTb.Text = "Select One"; EmailTb.ResetText(); DOBvalue.ResetText(); }
private void InsertBtn_Click(object sender, EventArgs e) { if (NameTb.Text != "" || PhoneTb.Text != "" || AddressTb.Text != "" || FatherNameTb.Text != "" || PhoneTb.Text != "" || SessionTb.Text != "") { _student.Name = NameTb.Text; _student.FatherName = FatherNameTb.Text; _student.Phone = PhoneTb.Text; _student.Address = AddressTb.Text; _student.Session = SessionTb.Text; _student.Class = ClassTb.Text; _student.Email = EmailTb.Text; _student.Dob = DOBvalue.Value; _student.AdminDate = AdminDateValue.Value; _student.Gender = GenderTb.Text; _studentService.InsertStudent(_student); MessageBox.Show("Record Added Successfully!", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); RollNoTb.ResetText(); NameTb.ResetText(); FatherNameTb.ResetText(); GenderTb.Text = "Select One"; PhoneTb.ResetText(); AddressTb.ResetText(); SessionTb.ResetText(); AdminDateValue.ResetText(); ClassTb.Text = "Select One"; EmailTb.ResetText(); DOBvalue.ResetText(); } else { MessageBox.Show("Please Fill all fields!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void ClearBtn_Click(object sender, EventArgs e) { RollNoTb.ResetText(); NameTb.ResetText(); FatherNameTb.ResetText(); GenderTb.Text = "Select One"; PhoneTb.ResetText(); AddressTb.ResetText(); SessionTb.ResetText(); AdminDateValue.ResetText(); ClassTb.Text = "Select One"; EmailTb.ResetText(); DOBvalue.ResetText(); }
private void DeleteBtn_Click(object sender, EventArgs e) { if (RollNoTb.Text != "") { _studentService.DeleteStudent(int.Parse(RollNoTb.Text)); MessageBox.Show("Record Deleted!", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); NameTb.ResetText(); FatherNameTb.ResetText(); GenderTb.Text = "Select One"; PhoneTb.ResetText(); AddressTb.ResetText(); SessionTb.ResetText(); AdminDateValue.ResetText(); ClassTb.Text = "Select One"; EmailTb.ResetText(); DOBvalue.ResetText(); } else { MessageBox.Show("Please Enter a RollNo!", "RollNo. is not provided", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }