private void btnThem_Click(object sender, EventArgs e) { if (txtMaNCC.Text.Trim().Length == 0) { MessageBox.Show("Bạn phải nhập mã nhà cung cấp", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); txtMaNCC.Focus(); return; } if (txtTenNCC.Text.Trim().Length == 0) { MessageBox.Show("Bạn phải nhập tên nhà cung cấp", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); txtMaNCC.Focus(); return; } if (BLL.testNCC(txtMaNCC.Text.Trim())) { MessageBox.Show("Mã nhà cung cấp này đã có, bạn phải nhập mã khác", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); txtMaNCC.Focus(); return; } if (string.IsNullOrEmpty(txtDiaChi.Text) || string.IsNullOrEmpty(txtDienThoai.Text)) { MessageBox.Show("vui lòng nhập đầy đủ các trường còn lại"); } BLL.insertNCC( txtTenNCC.Text, txtDiaChi.Text, txtDienThoai.Text); frmDMNhaCC_Load(sender, e); ResetValue(); btnXoa.Enabled = true; btnThem.Enabled = false; btnSua.Enabled = true; btnBoQua.Enabled = false; btnNhap.Enabled = true; txtMaNCC.Enabled = false; }