Ver Mensaje Individual
  #2  
Antiguo 10-07-2008
[coso] coso is offline
Miembro Premium
 
Registrado: may 2008
Ubicación: Girona
Posts: 1.678
Reputación: 0
coso Va por buen camino
hola. te dejo un ejemplo con TStringList

Código Delphi [-]
var
    sl : TStringList;
begin
    sl := TStringList.Create;
    sl.LoadFromFile('archivo.txt');

    showmessage('linea 3 del archivo : ' + sl[2]);

    sl.Free;
end;
Responder Con Cita