Ejemplo n.º 1
0
        private void MostrarDatosJuicio(string id_cobranza)
        {
            DataTable table = null;

            table = ConsultasEspecificas.MostrarDatosCabezeraPrendas(id_cobranza);
            if ((table.Rows.Count > 0) && (table != null))
            {
                this.txtNroOperacion.Text = table.Rows[0]["nrooperacion"].ToString();
                this.txtCliente.Text      = table.Rows[0]["nomcliente"].ToString();
                this.txtdeudor.Text       = table.Rows[0]["nomdeudor"].ToString();
                this.txtrutdeudor.Text    = table.Rows[0]["rut_deudor"].ToString();
                this.ComboBienMueble(this.txtrutdeudor.Text);
            }
        }