Home   |   Software   |   Practical Jokes   |   Code Corner   |   Workshops


Delphi Secret #8

Preventing Windows task switching
 
 
     Disabling task switching prevents the user from using the Ctrl+Alt+Del, Ctrl+Esc, or Alt+Tab commands.

Code:
var
  OldValue : LongBool;
begin
 {disables task switching}
 SystemParametersInfo(97, Word(True), @OldValue, 0);

 {enables task switching}
 SystemParametersInfo(97, Word(False), @OldValue, 0);
end;




This page was developed by FoxWare Design & Support.
Hosted by www.Geocities.ws

1