Registriert seit: 5. Jan 2006
Ort: Saarland
174 Beiträge
Delphi 2007 Professional
|
Re: TCustomMemo.Lines und Savedialog
16. Feb 2007, 16:24
Delphi-Quellcode:
var
s : string;
F: TextFile;
begin
AssignFile(F, 'c:\test.txt');
Reset(F);
while not eof(f) do begin
Readln(F, S);
memo1.Lines.add(s);
end;
CloseFile(f);
Jetzt musst du nur noch schauen welche Line du nicht haben willst..
Michael S.
|