CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: help...

  1. #1
    Join Date
    Jul 2002
    Posts
    1

    Arrow help...

    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

  2. #2
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured