在使用InsertString往ComBoBox插入数据时,若是不删除原有数据则是在末尾添加。需要先用DeleteString删除原有再插入。可参考代码:
int tem = m_ComBo.GetCount();
for(int i=0;i<tem;i++)
m_ComBo.DeleteString(0);
DeleteString(0),0是因为删除后ComBoBox的项就自动减一了
在使用InsertString往ComBoBox插入数据时,若是不删除原有数据则是在末尾添加。需要先用DeleteString删除原有再插入。可参考代码:
int tem = m_ComBo.GetCount();
for(int i=0;i<tem;i++)
m_ComBo.DeleteString(0);
DeleteString(0),0是因为删除后ComBoBox的项就自动减一了