private void BTNAgregar_Click(object sender, EventArgs e) { int idDistrito = int.Parse(idDistritoAgregarComboBox.SelectedItem.ToString()); sisVdatos sisV = new sisVdatos(); SqlDataReader dr = sisV.agregarPersonal(cedulaAgregarTextBox.Text, nombreAgregarTextBox.Text, apellido2AgregarTextBox1.Text, apellido2AgregarTextBox1.Text , sexoAgregarComboBox.SelectedItem.ToString(), idDistrito, otrasSeñasAgregarTextBox1.Text, nombreUsuarioAgregarTextBox1.Text, contraseñaAgregarTextBox1.Text , tipoVendedorAgregarComboBox.SelectedItem.ToString()); MessageBox.Show(tabPage6, "!!! Se Agrego Correctamente"); cedulaAgregarTextBox.Text = ""; nombreAgregarTextBox.Text = ""; apellido1AgregarTextBox1.Text = ""; apellido2AgregarTextBox1.Text = ""; nombreUsuarioAgregarTextBox1.Text = ""; contraseñaAgregarTextBox1.Text = ""; tipoVendedorAgregarComboBox.Text = ""; sexoAgregarComboBox.Text = ""; idDistritoAgregarComboBox.Text = ""; otrasSeñasAgregarTextBox1.Text = ""; cargarCedulaComboBox(); }