i have 3 textboxs... i declared 2 variable... i want to make the value in the first 2 textboxs appear in the third textbox when a button is click...
how can i go abt doing it? Thanks
Printable View
i have 3 textboxs... i declared 2 variable... i want to make the value in the first 2 textboxs appear in the third textbox when a button is click...
how can i go abt doing it? Thanks
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox3.Text = TextBox1.Text & TextBox2.Text
End Sub