i have a textbox
i have another textbox
i have a button

words go in the second textbox
button is clicked
they show up on first textbox

if "badword" is typed
all words go away

Im good...

what do i have to do to make the textbox jump to the nextline after every input...clicking of the button

i thought i had to calculate the textline...not good idea
i tried telling it to hit the enter button kind of like a macro but that went nowheere

Code:
Public Class Form1
    Private Sub Displaytextbutton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Displaytextbutton.Click
        DisplayBox.Text = DisplayBox.Text + Textinputbox.Text
if textinputbox.text = ("badword") then
displaybox.text = ("")
    End Sub
End Class