As an alternative you can set the "selected index" like this if you have the elements of the ComboBox stored in an Array or List
for (int i = 0; i < combo.Model.IterNChildren(); ++i) //iterate over ComboBox elements
{
if (myList[i].Equals(elementToSelect))
{
combo.Active = i;
break;
}
}