Thema: Delphi Quellcode klappt nicht

Einzelnen Beitrag anzeigen

Benutzerbild von toms
toms
(CodeLib-Manager)

Registriert seit: 10. Jun 2002
4.648 Beiträge
 
Delphi XE Professional
 
#2

Re: Quellcode klappt nicht

  Alt 18. Apr 2005, 08:44
Hallo!

Muesste so funktionieren:

Delphi-Quellcode:
procedure intxtschreiben(pfad, Text: string);
var
  txt: TextFile;
begin
  AssignFile(txt, pfad);
  if fileexists(pfad) then
    Append(txt)
  else
    Rewrite(txt);
  Writeln(txt, IntToStr(123));
  Closefile(txt);
end;
Thomas
  Mit Zitat antworten Zitat