Matthew:
Its always better to use the & Operator.

Code:
    Text1.Text = Text1.Text & "B"
if you want the return value to be a Concatenated string Always use &.
Code:
    MsgBox 1 + 2 ' returns 3 as an integer
    MsgBox 1 & 2 ' returns 12 as a string