Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TextBox1 As String = "TextBox1.Text"
Dim TextBox2 As String = "TextBox2.Text"
If Button1.CanSelect Then
TextBox3.Text = TextBox3.Text & TextBox1 & vbCrLf
TextBox3.Text = TextBox3.Text & TextBox2 & vbCrLf
End If
End Sub
What is supposed to go into the RED parts to take the info(text) from the text boxs and add it to the TextBox3

Add input from textbox?
daimaku
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TextBox1 As String = "TextBox1.Text"
Dim TextBox2 As String = "TextBox2.Text"
OR
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TextBox1 As String = "(TextBox1.Text)"
Dim TextBox2 As String = "(TextBox2.Text)"
jdang
Tell me what are you looking for and I'll try to help you.
Dédé
Edited
Use Environment.NewLine instead of vbCrLf is a strong recommendation.
Alex Farber
Thanks Guys for helping me out even though I'm asking A LOT of NOOB questions and that Im only 13
rapperux
jdang