'Example 1
Open "C:\Temp\SomeFile.txt" For Append As #1
Print #1, "Just Added This Line"
Print #1, "Just Added This Line Too"
Close #1
'Example 2
Open "C:\Temp\SomeFile.txt" For Append As #1
Print #1, "Just Added This Line"
Close #1
Open "C:\Temp\SomeFile.txt" For Append As #1
Print #1, "Just Added This Line Too"
Close #1
'Example 3
Open "C:\Temp\SomeFile.txt" For Append As #1
For i = 1 to 10
Print #1, "Just Added This Line: " & i
Next i
Close #1