How do I get Delphi to write to a text file without erasing the previous file? I already know how to add text, but as soon as I try to add more, it just replaces the previous text that was already in the file.
I already tried to change the command Rewriteto Write.
procedure TForm1.BtnokClick(Sender: TObject);
var
myfile :textfile;
naam, van, adress : string;
begin
adress := edtadress.Text;
van:= edtvan.Text;
naam := edtnaam.Text;
AssignFile(myfile,'C:\test.txt');
write(myfile);
Writeln(myfile,naam);
writeln(myfile,van);
writeln(myfile,adress);
closefile(myfile);
end;
source
share