Ver Mensaje Individual
  #4  
Antiguo 17-05-2003
__cadetill __cadetill is offline
Miembro
 
Registrado: may 2003
Posts: 3.387
Reputación: 25
__cadetill Va por buen camino
ya que dices que es para hacer un report (un listado), yo lanzaria una Query por separado

Código:
 
var Q : TIBQuery
begin
    Q := TIBQuery.Create;
    try
        Q.Database := IBDataBase1;
        Q.SQL.Text := 'Select * from PARTE ' +
                               ' where MES = ' variableconnumeromes;
        Q.Open;
        // Lanzar Listado
    finally
        FreeAndNil(Q);
    end;
end;
Espero te sirva
Responder Con Cita