private void Selecciona() { if (dgvCliente.SelectedRows.Count > 0) { String IdCliente; CNClientes dObj_ModeloCaj = new CNClientes(); IdCliente = dgvCliente.SelectedRows[0].Cells[0].ToString(); EnCliente = dObj_ModeloCaj.LlenaEntidad_Cliente(IdCliente); this.Close(); } else { MessageBox.Show("Debes sombrear un registro para seleccionarlo", "Validar busqueda", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
private void MostrarCliente(DataGridView dgvCliente) { try { CNClientes objProducto = new CNClientes(); SqlDataAdapter adapter = objProducto.CargaCliente(); foreach (DataRow row in tbCliente.Rows) { lista.Add((DataRow)row); } adapter.Fill(tbCliente); dgvCliente.DataSource = tbCliente; adapter.Dispose(); } catch (Exception ex) { MessageBox.Show("Carga fallida:" + ex.ToString()); } }
private void btnguardarCliente_Click(object sender, EventArgs e) { CNClientes cNClientes = new CNClientes(); string fecha1 = dateInscripcion.Value.ToString("yyyy-MM-dd"); string fecha2 = dateFechaNac.Value.ToString("yyyy-MM-dd"); try { MessageBox.Show("Clase de negocio:" + cNClientes); cNClientes.InsertClient(cboTienda.SelectedValue.ToString(), cbosector.SelectedValue.ToString(), bmnombreCliente.Text, bmapellidoP.Text, bmapellidoM.Text, bmnombreEmpresa.Text, bmdireccion.Text, bmcontacto.Text, bmtelefono.Text, bmfax.Text, bmruc.Text, bmcorreo.Text, cboTipoPersona.SelectedValue.ToString(), cbodocumento.SelectedValue.ToString(), bmnumerodoc.Text, bmobservacion.Text, fecha1, fecha2, bmcredito.Text, cboTipoCiente.SelectedValue.ToString(), cbodepartamento.SelectedValue.ToString(), cboprovincia.SelectedValue.ToString(), cbodistrito.SelectedValue.ToString(), bmUsuRegistra.Text); MessageBox.Show("SE registro CLIENTE"); this.DialogResult = DialogResult.OK; this.Close(); } catch (Exception ex) { Console.WriteLine("Error del mantenimiento:" + ex); MessageBox.Show("No se registro CLIENTE" + ex.ToString()); } }