Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Overriding the CTRL+ALT+DEL key...

Status
Not open for further replies.

Finisher

Programmer
Jan 10, 2002
23
PH
how can i override the ctrl+alt+del key??? can someone suggest what i need to do???
 
Hi,

some code to prevent CTRL+ALT+DEL

Steph


const
SPI_SCREENSAVERRUNNING = 97;

var
OldValue: Longbool;

{on}
SystemParametersInfo(SPI_SCREENSAVERRUNNING, Word(True), @OldValue, 0);

{off}
SystemParametersInfo(SPI_SCREENSAVERRUNNING, Word(False), @OldValue, 0);


{
Note: Runs only on Windows 95/98
}

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top