stringms-accessms-access-2007vba

Is there a shorter way of appending information to an existing string?


Is there a shorter way of appending information to an existing string in than:

strExample = strExample & "Lorem Ipsum"

I've got a lot of these when compiling dynamic strings, and it'd save time and look neater in my code if there was a shorter way of typing this.

Thanks


Solution

  • No sorry this is not possible.

    With you can use the operator &=. But it is not available in and not in VBA.