As far as I can see:
1. That's what a combobox is designed for... => solved
2. If you run your application on a device, the entries can NOT be edited => solved
3. The selected entry is hilited as long as the focus remains to the combobox control. My (simple) suggestion: Move the actual focus to any other control within the selction_changed event:
Sub ComboBox1_SelectionChanged (Index, Value)
' any control except the combobox will do
button1.Focus
End Sub
This works as long as the user did not "tap" the combobox without changing the actual selection. => perhaps (partly) solved
specci48