Wyo VB Lecture Notes

Objective #1: Use String variables.

You can also use the += operator to concatenate two strings as in

strName = "John"
strLastName = "Doe"
strName += strLastName


strName is now "JohnDoe" (with no space in between)

This last statement is equivalent to

strName = strName + strLastName