Well, that's kind of important information. How can you write to the fourth line of a TextBox that has no lines in it? There has to be at least four lines for there to be a fourth line.
If you want to add a new line to a TextBox you can do this:
vb.net Code:
myTextBox.AppendText(Environment.NewLine)
You can also assign any String array you like to the Lines property of a TextBox to overwrite all existing text. The array doesn't have to have come from the Lines property in the first place:
vb.net Code:
Dim lines As String() = {"Line 1", "Line 2", "Line 3"}
myTextBox.Lines = lines