private void cargarCliente(Cliente cli) { try { mtCliente.Text = cli.getNumero().ToString(); txtNombre.Text = cli.getNombre(); txtNombreFantasia.Text = cli.getNombreFantasia(); mtRUT.Text = cli.getRUT(); txtEmail.Text = cli.getEmail(); txtDireccion.Text = cli.getDireccion(); txtDireccionCobro.Text = cli.getDireccionCobro(); txtReferencia.Text = cli.getReferencia(); txtTelefonoCobro.Text = cli.getTelefonosCobro(); txtNombreParaCobrar.Text = cli.getContactoCobro(); txtDiaHoraCobro.Text = cli.getDiaHoraCobro(); txtTelefonos.Text = cli.getTelefonos(); txtFax.Text = cli.getFax(); dtpFechaAlta.Text = cli.getFechaAlta().ToString(); mtDiaInicioFacturacion.Text = cli.getDiaInicioFacturacion().ToString(); mtDiaFinFacturacion.Text = cli.getDiaFinFacturacion().ToString(); if (!cli.getActivo()) { cbNoActivo.Checked = true; dtpFechaBaja.Text = cli.getFechaBaja().ToString(); txtMotivoBaja.Text = cli.getMotivoBaja(); lblEstadoCliente.ForeColor = Color.Red; lblEstadoCliente.Text = "Inactivo"; } else { cbNoActivo.Checked = false; dtpFechaBaja.Text = ""; txtMotivoBaja.Text = ""; lblEstadoCliente.ForeColor = Color.LimeGreen; lblEstadoCliente.Text = "Activo"; } // Habilito Botones en la barra btnAgregar.Enabled = false; btnGuardar.Enabled = true; btnServicios.Enabled = true; } catch (ArgumentOutOfRangeException ex) { throw ex; } }