Ver Mensaje Individual
  #1  
Antiguo 22-04-2006
valdorre valdorre is offline
Registrado
 
Registrado: abr 2006
Posts: 7
Reputación: 0
valdorre Va por buen camino
hola, les cuento que solucione asi:
Código Delphi [-]
procedure TFormPrincipal.TxtBuscarChange(Sender: TObject);
begin
try
   begin
   with moduloDatos.IBDataSetCliente do
    begin
    Close;
    SelectSQL.Clear;
    SelectSQL.Add('SELECT * FROM Clientes');
    SelectSQL.Add('WHERE Apellido starting with :filtrarCli');
    ParamByName('filtrarCli').AsString := TxtBuscar.text ;
    Open;
    end;
   end
except
   showmessage('valor no valido');
end
end;
no se si es la forma mas correcta o la mejor, pero anda...
saludos

Osvaldo

Última edición por vtdeleon fecha: 22-04-2006 a las 21:51:01.
Responder Con Cita