Favor, Necesito Ayuda Urgente con un Browse

Post Reply
Miguel Rivera
Posts: 117
Joined: Sun Oct 01, 2006 11:39 pm

Favor, Necesito Ayuda Urgente con un Browse

Post by Miguel Rivera »

Hola Amigos:

Necesito saber si el BROWSE tiene un SetFilter, tengo una base de datos que mostrare por pantalla, pero debe mostrar solo los datos que se encuentran entre dos fechas.

Nesito en forma urgente, solucionar mi problema.

Gracias desde ya,

Miguel Rivera.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Miguel,

Puedes usar la claúsula SELECT ... FOR del browse, aqui tienes un ejemplo:

Code: Select all

   REDEFINE LISTBOX oBrw ;
      FIELDS DToC( Facturas->Fecha ), Facturas->Concepto ;
      HEADERS "Fecha", "Concepto" ;
      ID ID_BROWSE OF oDlg ;
      ALIAS "Facturas" ;
      SELECT Facturas->Codigo FOR Clientes->Codigo ;
      UPDATE
Revisa samples\gallery\onemany.prg
regards, saludos

Antonio Linares
www.fivetechsoft.com
Miguel Rivera
Posts: 117
Joined: Sun Oct 01, 2006 11:39 pm

Post by Miguel Rivera »

Antonio:

Muchas Gracias, lo aplicare y te cuento.

Saludos y Muchas Felicidades para este fin de año.

Miguel Rivera

Antonio Linares wrote:Miguel,

Puedes usar la claúsula SELECT ... FOR del browse, aqui tienes un ejemplo:

Code: Select all

   REDEFINE LISTBOX oBrw ;
      FIELDS DToC( Facturas->Fecha ), Facturas->Concepto ;
      HEADERS "Fecha", "Concepto" ;
      ID ID_BROWSE OF oDlg ;
      ALIAS "Facturas" ;
      SELECT Facturas->Codigo FOR Clientes->Codigo ;
      UPDATE
Revisa samples\gallery\onemany.prg
Post Reply