I've searched, but I can't find anything that displays how to add a new line to a text file without replacing any of the previous lines.
Does anybody know a good solution to this?
Printable View
I've searched, but I can't find anything that displays how to add a new line to a text file without replacing any of the previous lines.
Does anybody know a good solution to this?
VB Code:
Open "c:\myFile.txt" For [b]Append[/b] As #1 ... ... Close #1
:)
I feel so stupid sometimes :(
Is there documentation somewhere about all the commands like that? Such as Put, Append, Write, Print, etc?
This would be most helpful in the future.