hi guys, i have the code to print to a text file, but when i print to it, it deletes everything i had in there, and prints just the line i have added, all i want is to add to the current list, in the text file.. any pointers? cheers
Code:Dim E As Integer
E = FreeFile
Open App.Path & "\room.txt" For Output As #E
Print #E, Text1.Text & ":" & Text2.Text
Close #E
