Um Deine Datei im Memo darzustellen, ohne viel schnickschnack:
Delphi-Quellcode:
procedure ReadFileIntoMemo(const AFilename: string; const AMemo: TMemo);
var
Reader: TStreamReader;
Line: string;
begin
Reader := TStreamReader.Create(AFilename, TEncoding.ANSI);
try
AMemo.Lines.BeginUpdate;
AMemo.Clear;
AMemo.Font.Name := 'Terminal';
AMemo.Font.Size := 9;
AMemo.Font.Charset := OEM_CHARSET;
AMemo.Font.Style := [];
while not Reader.EndOfStream do
begin
Line := Reader.ReadLine;
AMemo.Lines.Add(Line);
end;
AMemo.Lines.EndUpdate;
finally
Reader.Free;
end;
end;