|
-
May 7th, 1999, 01:25 AM
#1
Windows Programming
How to disable Alt-Tab & Ctrl-Alt-Del keys programmatically in Windows NT & 95?
-
May 7th, 1999, 06:48 AM
#2
Re: Windows Programming
If you want to disable the alt-tab, alt-esc, ctrl-esc, ctrl-alt-del, start button, etc. there is a really easy way to do it under Win98. (haven't tried out in NT).
SystemParametersInfo (SPI_SCREENSAVERRUNNING, 1, &nOldVal, 0); //Turns keys off
SystemParametersInfo (SPI_SCREENSAVERRUNNING, 0, &nOldVal, 0); //Turns keys on
Hope this will help!
Santhosh
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|