private void btnDetails_Click(object sender, EventArgs e) { if (EmployeesGrid.SelectedRows.Count == 0) { MessageBox.Show("Please Select Specific Data First!"); } else { EmpEntryForm donorEntry = new EmpEntryForm(this, "Details", this.employeeId, this._branchId); donorEntry.ShowDialog(); } }
private void btnUpdate_Click(object sender, EventArgs e) { if (EmployeesGrid.SelectedRows.Count == 0) { MessageBox.Show("Please Select Specific Data First!"); } else { DialogResult result1 = MessageBox.Show("Are You Want To Update This?", "Confirm!", MessageBoxButtons.YesNo); if (result1 == DialogResult.Yes) { EmpEntryForm donorEntry = new EmpEntryForm(this, "Update", this.employeeId, this._branchId); donorEntry.ShowDialog(); } } }
private void btnAdd_Click(object sender, EventArgs e) { EmpEntryForm donorEntry = new EmpEntryForm(this, "Save", 0, this._branchId); donorEntry.ShowDialog(); }