Hi, I' am trying to add to a text file that has already text in it. It's a list of nickname's. You right click there name in a channel and it will add the line to the text file. But I can't seem to get it to add a line. Intead it erases what's in the text file and put's in what I add. I tried many things but can't seem to get it.

Adding a line to a text file
AydinCinaRli
The third parameter which is in Anrej example is set to True is whether it will append textToWrite to the file. If its set to false then it will overwrite the file contents.
vtortola
Hi,
the following code line should append additional text to existing file without overwriting it:
My.Computer.FileSystem.WriteAllText(fileName, textToWrite, True)Andrej