// Ok ! private void bt_Xoa_Click(object sender, EventArgs e) { NhanVienBus nvBus = new NhanVienBus(); int manv = Int32.Parse(tbl_NhanVien.Rows[tbl_NhanVien.CurrentCell.RowIndex].Cells[0].Value.ToString()); if (manv != 3114100) { if (DialogResult.Yes == MessageBox.Show("Bạn Muốn xóa nhân viên ?" + tbl_NhanVien.Rows[tbl_NhanVien.CurrentCell.RowIndex].Cells[1].Value.ToString(), "Comfirm", MessageBoxButtons.YesNo)) { if (nvBus.deleteNV(manv)) { MessageBox.Show("Delete Successed !"); } else { MessageBox.Show("Delete not Successed !"); return; } } resettext(); tbl_NhanVien.ClearSelection(); loadDSNhanVien(); } else { MessageBox.Show("Không thể xoá chính bạn !"); return; } }