private void butXoa_Click(object sender, EventArgs e) { try { if (m_v.dadung_v_quyenso(m_id) != 0) { MessageBox.Show(this, lan.Change_language_MessageText("Quyển sổ này đã dùng không thể xoá !"), m_v.s_AppName, MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (MessageBox.Show(this, lan.Change_language_MessageText("Đồng ý xoá quyển sổ này?"), m_v.s_AppName, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes) { if (m_id != "0") { string s = m_v.fields(m_v.user + ".v_quyenso", "id=" + m_id); m_v.upd_eve_tables(itable, int.Parse(m_userid), "del"); m_v.upd_eve_upd_del(itable, int.Parse(m_userid), "del", s); } if (!m_v.del_v_quyenso(m_id)) { MessageBox.Show(this, lan.Change_language_MessageText("Quyển sổ này đã dùng không thể xoá !"), m_v.s_AppName, MessageBoxButtons.OK, MessageBoxIcon.Information); } else { f_Load_DG(); butBoqua_Click(null, null); } } } catch { } }