pkahal
August 4th, 2005, 01:49 AM
I am able to disable Alt-s using
RegisterHotKey(Handle, 904, MOD_ALT, VkKeyScan('s'))
I am also able to disable Ctrl-v using
RegisterHotKey(Handle, 905, MOD_CONTROL, VkKeyScan('v'))
But I am not able to disable Ctrl-esc using
RegisterHotKey(Handle, 906, MOD_CONTROL, VK_ESCAPE)
Seems something to do with VK_ESCAPE which is 27 at runtime corresponding to ESC
Regards
RegisterHotKey(Handle, 904, MOD_ALT, VkKeyScan('s'))
I am also able to disable Ctrl-v using
RegisterHotKey(Handle, 905, MOD_CONTROL, VkKeyScan('v'))
But I am not able to disable Ctrl-esc using
RegisterHotKey(Handle, 906, MOD_CONTROL, VK_ESCAPE)
Seems something to do with VK_ESCAPE which is 27 at runtime corresponding to ESC
Regards