Hi,
ich versuche, ne zeile in nem file hinzuzufügen, allerdings ersetzt er den ganzen text des files
...
woran könnte es liegen?
code:
Delphi-Quellcode:
var a: string;
d: textfile;
//-----------------
a:='test';
AssignFile(d, Edit2.Text);
Rewrite(d);
writeln(d, a);
closefile(d);
cYa and ThX
Leathl