VB Code:
  1. FileNum = FreeFile
  2. Open "C:\test.txt" For Output As FileNum
  3. Print #FileNum, Text1.Text
  4. Close FileNum

I have the above code to save my text but everytime i save it overwrites the current test.txt file with the text in textbox1 when i just want it to add to the txt file everytime i save.

Cheers, William