79076145

Date: 2024-10-10 21:06:19
Score: 1
Natty:
Report link

The following will remove the sound without affecting system shortcut behavior:

case WM_SYSCOMMAND:
    if (wParam == SC_KEYMENU) return 0; //Prevents a system sound from playing when alt key combinations are pressed
    else return DefWindowProc(hWnd, message, wParam, lParam);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jesse