public IndleverEKG(MainWindow main, Logic logicref) { InitializeComponent(); Main = main; this.logicref = logicref; IDTB.Focus(); IDTB.SelectAll(); }
private void button3_Click(object sender, EventArgs e) { if (CheckPayment()) { return; } Dttt = DateTime.Now; Print(); AddRecord(); IDTB.Focus(); }
private void button1_Click(object sender, EventArgs e) { if (IDTB.Text == "") { IDTB.BackColor = Color.DodgerBlue; MessageBox.Show("ID Is Required", "Please Enter ID", MessageBoxButtons.OK, MessageBoxIcon.Warning); IDTB.Focus(); return; } String ConnString = ConfigurationManager.ConnectionStrings["PayrollConn"].ConnectionString; SqlConnection Conn = new SqlConnection(ConnString); try { SqlCommand cmd = new SqlCommand("DeleteEmp", Conn); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@Empid", IDTB.Text); DialogResult Res = MessageBox.Show("Do You Want To Delete Record", "Yes Or No", MessageBoxButtons.YesNo, MessageBoxIcon.Question);; if (Res == DialogResult.Yes) { Conn.Open(); cmd.ExecuteNonQuery(); MessageBox.Show("Record Deleted", "Deleted", MessageBoxButtons.OK, MessageBoxIcon.Information); ClearMethod(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { Conn.Close(); } }
private Boolean Validation() { if (IDTB.Text == "") { IDTB.BackColor = Color.DodgerBlue; MessageBox.Show("ID Is Required", "Please Enter ID", MessageBoxButtons.OK, MessageBoxIcon.Warning); IDTB.Focus(); return(true); } if (FirstNameTB.Text == "") { FirstNameTB.BackColor = Color.DodgerBlue; MessageBox.Show("First Name Is Required", "Please Enter First Name", MessageBoxButtons.OK, MessageBoxIcon.Warning); FirstNameTB.Focus(); return(true); } if (LastNametextBox.Text == "") { LastNametextBox.BackColor = Color.DodgerBlue; MessageBox.Show("Last Name Is Required", "Please Enter Last Name", MessageBoxButtons.OK, MessageBoxIcon.Warning); LastNametextBox.Focus(); return(true); } if (DateOfBirthTB.Value == Dt) { DateOfBirthTB.BackColor = Color.DodgerBlue; MessageBox.Show("Date Of Birth Is Required", "Please Enter Date Of Birth", MessageBoxButtons.OK, MessageBoxIcon.Warning); DateOfBirthTB.Focus(); return(true); } if (GenderTB.SelectedIndex == -1) { GenderTB.BackColor = Color.DodgerBlue; MessageBox.Show("Gender Is Required", "Please Select Gender", MessageBoxButtons.OK, MessageBoxIcon.Warning); GenderTB.Focus(); return(true); } if (ContacttextBox.Text == "") { ContacttextBox.BackColor = Color.DodgerBlue; MessageBox.Show("Contact Number Is Required", "Please Enter Contact", MessageBoxButtons.OK, MessageBoxIcon.Warning); ContacttextBox.Focus(); return(true); } if (NICtextBox.Text == "") { NICtextBox.BackColor = Color.DodgerBlue; MessageBox.Show("NIC Is Required", "Please Enter NIC", MessageBoxButtons.OK, MessageBoxIcon.Warning); NICtextBox.Focus(); return(true); } if (DepartmentTextBoc.SelectedIndex == -1) { DepartmentTextBoc.BackColor = Color.DodgerBlue; MessageBox.Show("Department Is Required", "Please Select Department", MessageBoxButtons.OK, MessageBoxIcon.Warning); DepartmentTextBoc.Focus(); return(true); } if (designationtextBox.SelectedIndex == -1) { designationtextBox.BackColor = Color.DodgerBlue; MessageBox.Show("Designation Is Required", "Please Select Designation", MessageBoxButtons.OK, MessageBoxIcon.Warning); designationtextBox.Focus(); return(true); } if (StatuscomboBox.SelectedIndex == -1) { StatuscomboBox.BackColor = Color.DodgerBlue; MessageBox.Show("Status Is Required", "Please Select Status", MessageBoxButtons.OK, MessageBoxIcon.Warning); StatuscomboBox.Focus(); return(true); } if (DateOfHired.Value == Dt) { DialogResult Result = MessageBox.Show("Do You Want To Enter To Day's Date ? ", "Yes Or No", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (Result == DialogResult.No) { DateOfHired.Focus(); return(true); } } if (BasicSalarytextBox.Text == "") { BasicSalarytextBox.BackColor = Color.DodgerBlue; MessageBox.Show("Basic Salary Is Required", "Please Enter Basic Salary", MessageBoxButtons.OK, MessageBoxIcon.Warning); BasicSalarytextBox.Focus(); return(true); } if (JobTitletextBox.Text == "") { JobTitletextBox.BackColor = Color.DodgerBlue; MessageBox.Show("Job Title Is Required", "Please Enter Title", MessageBoxButtons.OK, MessageBoxIcon.Warning); JobTitletextBox.Focus(); return(true); } if (HouseNOtextBox.Text == "") { HouseNOtextBox.BackColor = Color.DodgerBlue; MessageBox.Show("House Number Is Required", "Please Enter House Number", MessageBoxButtons.OK, MessageBoxIcon.Warning); HouseNOtextBox.Focus(); return(true); } if (AddLine1Tb.Text == "") { AddLine1Tb.BackColor = Color.DodgerBlue; MessageBox.Show("Address Is Required", "Please Enter Address", MessageBoxButtons.OK, MessageBoxIcon.Warning); AddLine1Tb.Focus(); return(true); } if (PasswordTb.Text == "") { PasswordTb.BackColor = Color.DodgerBlue; MessageBox.Show("Password Number Is Required", "Please Enter Password", MessageBoxButtons.OK, MessageBoxIcon.Warning); PasswordTb.Focus(); return(true); } return(false); }