S
Stefan
Hy,
i have an app and i must disable this combination: ALT+F4;
CTRL+ALT+DEL; CTRL+ESC;ALT+TAB like this:
i find something on Internet and i can block ALT+F4
protected override System.Boolean
ProcessCmdKey(ref System.Windows.Forms.Message
msg,System.Windows.Forms.Keys keyData)
{
if ((msg.Msg == 0x104) && (((int)
msg.LParam) == 0x203e0001))
return true;
return false;
}
pls help, how can i block the rest of keys.
Stefanelus
i have an app and i must disable this combination: ALT+F4;
CTRL+ALT+DEL; CTRL+ESC;ALT+TAB like this:
i find something on Internet and i can block ALT+F4
protected override System.Boolean
ProcessCmdKey(ref System.Windows.Forms.Message
msg,System.Windows.Forms.Keys keyData)
{
if ((msg.Msg == 0x104) && (((int)
msg.LParam) == 0x203e0001))
return true;
return false;
}
pls help, how can i block the rest of keys.
Stefanelus