Re: Append new line to Text File



Open App.Path & "\sinfo.txt" For Append As #1
Print #1, title & " " & Artist
Close #1

When I use the above code in a file that already has one line of text,
it just puts the stuff at the end of the line not on a new line. (I
don't want to use write because I don't want quotes around my text).

.