VC++: How to disable Ctrl+Alt+Del key?
How to disable Ctrl+Alt+Del key?
Disabling Ctrl+Alt+Del keys is an easy job. Just call SystemParametersInfo( ) function as follows:
SystemParametersInfo ( SPI_SETSCREENSAVERRUNNING, TRUE, NULL, 0 ) ;
To enable the keys again call SystemParametersInfo( ) as given below:
SystemParametersInfo ( SPI_SETSCREENSAVERRUNNING, TRUE, NULL, 0 ) ;




Comments
Log in or create a user account to comment.