I can write to file, but it writes over what is already there. How do I keep teh data already in the file and just add to it?
Printable View
I can write to file, but it writes over what is already there. How do I keep teh data already in the file and just add to it?
Open it in Append mode. Here's what i'm talking about:
VB Code:
Open "c:\test.txt" For [B]Append[/B] As #1 Print #1, "Something new..." Close #1