Click to See Complete Forum and Search --> : help...


newbie.net
July 28th, 2002, 04:04 AM
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

DSJ
July 29th, 2002, 04:01 PM
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