Add an element to the delimited string.
The delimiter
The delimited string
The string to add
(no description)
Dim s as String s = "" DelimListAdd(s, "eins") DelimListAdd(s, "zwei") DelimListAdd(s, "drei") DelimListAdd(s, "vier") Debug.Print s => "eins, zwei, drei, vier"