when the user types something in txt1 it automatically goes into txt2 when they click on a button. But how do you make it so the words are ontop of eachother? txt2 is multline. Thank in advanced.
Printable View
when the user types something in txt1 it automatically goes into txt2 when they click on a button. But how do you make it so the words are ontop of eachother? txt2 is multline. Thank in advanced.
Like this:
:DVB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click TextBox1.Text = TextBox1.Text & vbCrLf & TextBox2.Text End Sub