Nicht sehr performant, aber wenn die Liste nicht zu lange ist, vernachlässigbar:
Delphi-Quellcode:
for i := 0 to ComboBox1.Items.Count - 1 do
begin
if ComboBox1.Items[i] = 'blubb' then
begin
ComboBox1.ItemIndex := i;
break;
end;
end;
Nachtrag:
ComboBox1.ItemIndex := ComboBox1.Items.IndexOf('blubb');