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
Open "c:\test.txt" For [B]Append[/B] As #1 Print #1, "Something new..." Close #1
Use [CODE] tags and rate useful posts VB: MSDN VBnet DevX vbAccelerator DB: W3Schools SQL TechOnTheNet's Oracle/PLSQL ConnectionStrings Misc (IT): Use XP look (manifest) in your apps (sample) MZ-Tools (free and cool VB add-in) Deploy your apps with Inno Setup Misc: Zeitgeist Movie ... so make the best of this test and don't ask why, it's not a question, but a lesson learned in time...
Forum Rules