Basically all I need is my program to write a character(Ex: "1") in a certain position specified by me in a line in a textbox.

So so far my code is:
Code:
Dim sw As IO.StreamWriter = IO.File.AppendText("101.txt")
        sw.Write()
And all i need to know is how i pick the position that the .write function writes.
:S