If I want to set the combo selected index to -1 to display prompt text I first have to set it to another value then set it to -1.
Have I missed something...
B4X:
cboSnip.SelectedIndex = -1
this displays last item
cboSnip.SelectedIndex = 0
cboSnip.SelectedIndex = -1
this works...