LIST BOX小问题
case IDC_DISALL: //全部显示 { HWND hwndCombo = GetDlgItem(hwnd,IDC_COMBO1); int iCount = ComboBox_GetCount(hwndCombo); for(int i =0; i< iCount ;i++) { TCHAR str[256]; ComboBox_GetLBText(hwndCombo,i,str); ComboBox_SetCurSel(hwndCombo,i); } }