Hi I have a combobox and i need the chosen items to be displayed in the combobox display at the top in alphabetically order, i.e.
Say I have a combobox with dropdown list as follows,
["Y", "B", "A", "R", "G"]
The Combobox is set to accept muliple selections so if someone sleects "G", "B", "Y" the combo box will display "G B Y" but I want it to sort these so thye would display as "B G Y"
The reason for this is I have a button that when pressed it compares the selected combobox items and then naviagtes to another screen if the selected ietms match, the problem though is the items display in the order they are selected so this gives many variations, hence why I want them to sort.
Many thanks