|
Thank you for your reply.
The DWORD you said, I set it like this before. Because of problems, it was changed to WORD.
The problem is the same.
RegisterHotKey (g_hWnd, 1001, HIBYTE (wHotKey), LOBYTE (wHotKey));
This cannot be changed, and it was unsuccessful at first, because the following method was used, and later, after checking the information, I knew that the above writing should be used:
isterHotKey (g_hWnd, 1001, HIWORD (wHotKey), LOWORD (wHotKey));
Note :: Strangely, all other hotkeys can be registered normally, for example, Ctrl + Shift + Z, Ctrl + Shift + Alt + Z, but there is a strange phenomenon as shown in the title. |
|