can any1 tell me how i can dissable the <ctrl>+<alt>+<del> combination from starting taskmanager? and also, is it possible to create a fake startbar...that works.
Printable View
can any1 tell me how i can dissable the <ctrl>+<alt>+<del> combination from starting taskmanager? and also, is it possible to create a fake startbar...that works.
Question 1
Code:Private Declare Function SystemParametersInfo Lib _
"user32" Alias "SystemParametersInfoA" (ByVal uAction _
As Long, ByVal uParam As Long, ByVal lpvParam As Any, _
ByVal fuWinIni As Long) As Long
Sub DisableCtrlAltDelete(bDisabled As Boolean)
Dim X As Long
X = SystemParametersInfo(97, bDisabled, CStr(1), 0)
End Sub
Private Sub Command1_Click()
Call DisableCtrlAltDelete(True)
End Sub
Private Sub Command2_Click()
Call DisableCtrlAltDelete(False)
End Sub