I’m using a combobox component that I’m populating with a five-element array, as follows:
0 All
1 Bakery
2 Diary
3 Deli
4 Drink
And because I don’t want “All” displaying in the text box, I’ve added the line
dropDown.text = “Select here…”
once the combobox is populated. Unfortunately, when I test the combobox and open the list, “All” is at the top of the list but already selected, so that when I click it, nothing happens. The rest of the items work fine.
Could someone tell me how to disable the first item, so that it’s not automatically selected when the list opens and therefore can be clicked?