The AddItem method simply appends (or inserts) an item in a string delimited
by semicolons. So if you AddItem "Tom", then "Dick", then "Harry", your
RowSource string will be "Tom;Dick;Harry".
You can use the Split function to morph this string into an array of three
strings, then use your favourite sort algorithm to sort the array, then
finally use the Join function to recreate a delimited string:
"Dick;Harry;Tom".
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.