VB.Net - Ascii Files

Here is a command to append to a text file.

1
2
3
Using sw As System.IO.StreamWriter = System.IO.File.AppendText(CSVFileName)
sw.WriteLine( message )
End Using

You need to initialize the CSVFileName variable and the Message variable.