Results 1 to 1 of 1

Thread: [TUT] Concatenation [/TUT]

  1. #1
    Senior Member
    Join Date
    Aug 2010
    Posts
    212
    Thanks
    50
    Thanked 69 Times in 16 Posts

    Default [TUT] Concatenation [/TUT]

    Originally on my site: Concatenation



    Concatenation is pretty much the addition of strings. This is frequently used in many programs and also a very simple concept.

    Here is an example:
    1. Open a new project
    2. Add one button and two textboxes
    3. Double click your button and add this code:
    Code:
     Dim strOne As String
            Dim strTwo As String
            strOne = TextBox1.Text
            strTwo = TextBox2.Text
    
            MessageBox.Show(strOne & " " & strTwo)
    Explanation:
    -If you didn't know dim is the same thing as "define" it defines your variables. We defined two different strings here (strOne and strTwo).
    -We then set each string equal to a textbox. It is set to textbox1/2.TEXT because you are setting it equal to what was entered into the textbox.
    -After defining variables we use messagebox.show (pretty much a pop up which you can add extra functions but I will not use those) and we are making it show strOne, a space, and strTwo.
    -Notice we use the ampersand (&). This is what you use to connect any variable with anything in quotes. We connect what ever strOne is equal to, a space (between quotes is the space), and what ever strTwo is equal to.
    -Run your application (F5) and enter "Hello" in the first textbox and "Bob" in the second. click your button and a messagebox should pop up saying "Hello Bob"


    Mess around with random uses like this until you get the hang of it. Then keep moving forward in your Visual Basic Career :P
    Last edited by Zer[o]; 08-19-2010 at 01:15 PM.
    http://vb-board.com - Programming, SEO, Web Development, and more

  2. LinkDemon

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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