Hello, I would like to disable the ALT+F4
key, I'am french so my english is not good,
Thanks
if u just want your application not close on ALT+F4,don't process WM_DESTROY in your window/dialog procedure
How I do this?? I doesn't process to the WM_DESTROY message
but my program close on alt+f4
Thanks for replying
Just make sure DefWindowProc doesn't process it, something like:
.elseif uMsg==WM_DESTROY
xor eax,eax
ret