Zitat von
qb-tim:
OK, ich habe es jetzt mit einer StringList gemacht:
Delphi-Quellcode:
sl := TStringList.Create;
sl.LoadFromFile('datei.abc');
for i := 0 to sl.Count - 1 do
begin
// etc...
end;
sl.Free
Back to the roots: ich baue mir in so einem Fall ein ReadLn_Spezial (bzw. hole es aus dem Schrank, das Problem kommt ja öfter vor), das bereits beim Einlesen LF durch CR-LF ersetzt. So macht das auch Wordpad.
VCL ist überflüssig.
Gruss Reinhard