Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I m trying to block some key combination for e.g ctrl + s . I m creating 3rd party DLL file for my application. can any1 help me out ?
vaibhav
Use SetWindowsHookEx() to set up a WH_KEYBOARD hook. Return a nonzero value from the your hook procedure to kill the keystroke.
See here[^] if its helpfuls
WhiteSky