コード例 #1
0
        private void MostrarDatosJuicioActividad(string id_juicio)
        {
            DataTable table = ConsultasEspecificas.MostrarDatosCabezeraExhorto(id_juicio);

            if (table != null && table.Rows.Count > 0)
            {
                this.txtNroOperacion.Text = table.Rows[0]["nrooperacion"].ToString();
                this.txtCliente.Text      = table.Rows[0]["nomcliente"].ToString();
                this.txtRutDeudor.Text    = table.Rows[0]["rut_deudor"].ToString();
                this.txtNomDeudor.Text    = table.Rows[0]["nomdeudor"].ToString();
                this.txtRol.Text          = table.Rows[0]["rol"].ToString();
                this.txtTribunal.Text     = table.Rows[0]["tribunal"].ToString();
                this.txtProducto.Text     = table.Rows[0]["producto"].ToString();
            }
        }