Hi,
EOF txtFile sollte EOF(txtFile) lauten...
[EDIT]
Unter Umständen bei den Methoden die
Unit System noch davorhängen
Bsp:
Delphi-Quellcode:
...
Var
f: TextFile;
s: String;
...
try
AssignFile(f, FileName);
System.Reset(f);
while not eof(f) do
begin
Readln(f, s);
// Strings.Add(s);
//Inc(Cnt);
end;
finally
System.CloseFile(f);
end;
[/EDIT]
Cu, Frank