WMKEYUP
WM_KEYUP is a Windows message sent to the window that currently has keyboard focus when a non-system key is released. Its numeric constant is 0x0101, and it serves as the counterpart to WM_KEYDOWN. For keys that involve the system (such as when ALT is used), the system key result is delivered as WM_SYSKEYUP instead.
The wParam parameter contains the virtual-key code of the key that was released (for example, VK_A, VK_LEFT,
WM_KEYUP is typically handled in a window procedure to react when a user finishes pressing a key,
WM_KEYUP is delivered to the window with focus unless input processing is redirected (for example, by certain