iam using combobox, not bounded to data source in c#.
cmbBox.Items.Add("apple");
cmbBox.Items.Add("orange");
cmbBox.Items.Add("banana");
Now I want to set SelectedIndex to finally added "banana", but cannot use cmbBox.SelectedIndex = cmbBox.Items.count -1; as the combo box is sorted !
Any tips please ?