It canât be done I'm afraid. The [CTRL] + [ALT] + [DEL] key combination is unique to windows, so it won't let your app interrupt the sequence.
There is an outside chance that you could hook into the windows messages and cancel the keystrokes from there, but that is not something I would want to play with.
Try looking for more information about the following API's which are to do with windows messages:
CallWindowProc,
DefWindowProc,
SetProp,
SetWindowLong,
GetProp and
RemoveProp
Regards
Owain Williams
|