Hello,
I have a combo box that contains a pick list of strings. When a value is 'picked' I want to copy the string to a text box. The user can make multiple selections from the combo box. I want these multiple selections stored in the text box for later processing. I hoped that something like txtKeys = txtKeys + chr(13) + cboKeys would give me a CRLF between selected values. However this doesn't work. How do I get my multiple selections into the text box?
I have a combo box that contains a pick list of strings. When a value is 'picked' I want to copy the string to a text box. The user can make multiple selections from the combo box. I want these multiple selections stored in the text box for later processing. I hoped that something like txtKeys = txtKeys + chr(13) + cboKeys would give me a CRLF between selected values. However this doesn't work. How do I get my multiple selections into the text box?