Add text to a control, separated by a delimiter, unless the text is already present.
The default delimiter.
The string to add the text to.
The text to add.
(no description)
Dim LanguagesSpoken as String AddToControlText LanguagesSpoken, "Italian", ", " => s = "Italian" AddToControlText LanguagesSpoken, "German", ", " => s = "Italian, German" AddToControlText LanguagesSpoken, "Greek", ", " => s = "Italian, German, Greek" AddToControlText LanguagesSpoken, "Italian", ", " => s = "Italian, German, Greek"