| 186 | } |
| 187 | |
| 188 | static void AddComboBoxEntryWithData(HWND hwnd, int nIDDlgItem, WCHAR *pszText, UINT Data) |
| 189 | { |
| 190 | // add the entry |
| 191 | LRESULT ret = SendDlgItemMessage(hwnd, nIDDlgItem, CB_ADDSTRING, 0, (LPARAM)pszText); |
| 192 | if (ret < 0) |
| 193 | return; |
| 194 | |
| 195 | // set its data |
| 196 | SendDlgItemMessage(hwnd, nIDDlgItem, CB_SETITEMDATA, ret, Data); |
| 197 | } |
| 198 | |
| 199 | static void SelectComboBoxItemByValue(HWND hwnd, int nIDDlgItem, UINT Data) |
| 200 | { |