DR00ME Posted March 24, 2004 Posted March 24, 2004 How do I write in a file without overwriting the old stuff ? Quote "Everything should be made as simple as possible, but not simpler." "It's not that I'm so smart , it's just that I stay with problems longer ." - Albert Einstein
Leaders dynamic_sysop Posted March 24, 2004 Leaders Posted March 24, 2004 Dim sWriter As New IO.StreamWriter("C:\test123.txt", True) '/// True to append to file without overwriting. sWriter.WriteLine("stuff here") sWriter.Close() ;) Quote
DR00ME Posted March 24, 2004 Author Posted March 24, 2004 Good stuff... cheers...:) Quote "Everything should be made as simple as possible, but not simpler." "It's not that I'm so smart , it's just that I stay with problems longer ." - Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.