Appending to a .txt file

Hi I have a .txt file to which I will append som text. I use the following code to open and write to it: TextFil.WRITEMODE(TRUE); TextFil.TEXTMODE(TRUE); TextFil.OPEN(‘c:\textfil.txt’); But when I use TextFil.WRITE(some text) to write to the file, the existing file is being overwritten ínstead of the new text being appended to the existing file? Is it the wrong way of opening the file, when I want to append text to it? Jens

I’ve found a solution: Before writing to the file, I place a pointer at the end of the file: TextFil.SEEK(TextFil.LEN); Jens