Quote Originally Posted by Bojan
I don't know the specifics of your situation, but I guess you could clear the combobox, and then re-insert all the items except the "blue" one. But this isn't as nice as if you had the index.

Bojan
I mast remove more item ( 100 - 800 item ) and this solution isn't efficent

Quote Originally Posted by jpn
// OR make use of QComboBox::setCurrentText()
combo->setCurrentText("blue");
combo->removeItem(combo->currentItem());
I'll try this solution

thk's all

drow