Rev 25 | Rev 30 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 25 | Rev 29 | ||
|---|---|---|---|
| Line 318... | Line 318... | ||
| 318 | else if (wParam_loword == MENUID_INTERNET_MOTD) |
318 | else if (wParam_loword == MENUID_INTERNET_MOTD) |
| 319 | Window_MOTD (); |
319 | Window_MOTD (); |
| 320 | 320 | ||
| 321 | // help menu, help |
321 | // help menu, help |
| 322 | else if (wParam_loword == MENUID_HELP_HELP) |
322 | else if (wParam_loword == MENUID_HELP_HELP) |
| - | 323 | { |
|
| - | 324 | swprintf_s (folder_path, WCHAR_SIZEOF (folder_path), L"Chess Giants (%s).html", os_language); |
|
| 323 | ShellExecute (NULL, L"open", |
325 | ShellExecute (NULL, L"open", folder_path, NULL, NULL, SW_MAXIMIZE); // fire up the help file |
| - | 326 | } |
|
| 324 | 327 | ||
| 325 | // help menu, get chess games |
328 | // help menu, get chess games |
| 326 | else if (wParam_loword == MENUID_HELP_GETCHESSGAMES) |
329 | else if (wParam_loword == MENUID_HELP_GETCHESSGAMES) |
| 327 | ShellExecute (NULL, L"open", L"http://www.chessgames.com", NULL, NULL, SW_MAXIMIZE); // fire up the browser |
330 | ShellExecute (NULL, L"open", L"http://www.chessgames.com", NULL, NULL, SW_MAXIMIZE); // fire up the browser |
| 328 | 331 | ||