& - Operator (String Concatenation)

Concerns

This operator converts the expressions to the left and right of the operator into strings and attaches them to each other.

Example

Dim V1 As String, V2 As String, V3 As String

V1 := "TAP.CON"

V2 := "Configuration Expert"

V3 := V1 & " " & V2

Result:

V3 contains the value "TAP.CON Configuration Expert"

The string concatenation is performed only in the current dialog language.