private void BtnThem_Click(object sender, EventArgs e) { if (txtTen.Text == "" || txtQue.Text == "" || txtQuoctich.Text == "" || txtCongviec.Text == "") { errorProvider1.SetError(txtTen, "Bắt buộc phải điền đầy đủ thông tin!"); } else { if (db.checkTacGia(txtTen.Text) == 0) { MessageBox.Show("Tác giả đã được thêm trước đó!", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { db.ThemTG(txtTen.Text, txtQue.Text, txtCongviec.Text, txtQuoctich.Text, dptNgaysinh.Value); DialogResult a = MessageBox.Show("Thêm thành công!", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Information); if (a == DialogResult.OK) { txtTen.Enabled = false; txtQue.Enabled = false; txtQuoctich.Enabled = false; txtCongviec.Enabled = false; dptNgaysinh.Enabled = false; } dgvTacGia.DataSource = db.TacGia_table(); } } }