Using SEEK function to get the position of the last entry in a text file and then start writing new text.
MyFile.SEEK(MyFile.LEN);
MyPOS := MyFile.POS;
MyOutStream.WRITE(Variable3); //WRITE TO FILE WITH STREAM
MyOutStream.WRITETEXT(Variable4); //WRITE TO FILE WITH STREAM
MyFile.CLOSE;
WRITETEXT is still overwriting the existing text, have I done something wrong?
Comments
viewtopic.php?f=23&t=27718&p=150384#p150384