Delphi-Quellcode:
With MyCombobox do MyItemIndex := Items.IndexOf(Text);
// Für 'With'-Ablehner
MyItemIndex := MyComboBox.Itemes.IndexOf(MyComboBox.Text);
// Vermutlich geht auch ;-)
MyItemIndex := MyComboBox.ItemIndex;
Letzeres dürfte am Einfachsten und am Richtigsten sein.