private void btnCapNhap_Click(object sender, EventArgs e) { try { KhoiTaoDTO(); if (docgiaBUS.KiemTra(docgiaDTO)) { if (docgiaBUS.UpDate(docgiaDTO)) { MessageBox.Show("Cập nhập thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); dgvDanhSachDocGia.DataSource = docgiaBUS.Select(); STT(); } else { MessageBox.Show("Cập nhập không thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } Forcus(); TangMaTuDong(); txtMaDocGia.Focus(); } else { MessageBox.Show("Thông tin cập nhập không hợp lệ!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch { MessageBox.Show("Thông tin cập nhập không hợp lệ!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }