private void BtnSua_Click(object sender, EventArgs e) { if (txtTen.Text == "" || txtTruso.Text == "" || txtQuocgia.Text == "" || txtWeb.Text == "") { errorProvider1.SetError(txtTen, "Bắt buộc phải điền đầy đủ thông tin!"); } else { if (db.checkNXB(txtTen.Text) == 0) { MessageBox.Show("Trùng NXB!", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { db.SuaNXB(Convert.ToInt32(txtMaNXB.Text), txtTen.Text, txtTruso.Text, txtQuocgia.Text, txtWeb.Text); DialogResult a = MessageBox.Show("Sửa thành công!", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Information); if (a == DialogResult.OK) { txtTen.Enabled = false; txtTruso.Enabled = false; txtQuocgia.Enabled = false; txtWeb.Enabled = false; } dgvNXB.DataSource = db.NXB_table(); btnSua.Visible = false; } } }