strCatC

Concatenate a character onto the end of another string.

Syntax: strCat(dst,chr)

dst Required. The string to add  src to the end of
chr Required. The character to add to the end of dst

Example:

Dim s1(10) As String
Dim x as uByte

s1="ab"

StrCatC(s1,"c")  ' s1="abc"
x="d"
StrCatC(s1,x)   ' s1="abcd"

Also See: strCat