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

Thread: Code Help

  1. #1
    Join Date
    Sep 2001
    Location
    Indiana
    Posts
    6

    Code Help

    I need to write a code that concatenates the contents of two TextBox controls named txtWord1 and txtWord2 to be displayed in a Label control with a name of lblFinal Thanks


  2. #2
    Join Date
    Apr 2001
    Location
    Lincs, UK
    Posts
    16

    Re: Code Help

    Try lblFinal.caption = (txtword1.text) & (txtword2.text)



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