HI, I have a Combo box where I have a list of teams. That works correctly. But my problem is if I select a team from the box how do I remove the team from the Combo box selection.
m_Combo.AddString("Man Utd");
m_Combo.AddString("Arsenal");
m_Combo.AddString("Liverpool");
m_Combo.AddString("Sunderland");
m_Combo.AddString("Chelsea");//just adding teams//
m_Combo.AddString("Leeds");
m_Combo.AddString("West Ham");
m_Combo.AddString("Newcastle");
Any help would be great!!