Can you press ctrl+alt+del and bring up 'that box' when running a personalised windows shell??
If so, can you disable it by using api's????
Thanx
Printable View
Can you press ctrl+alt+del and bring up 'that box' when running a personalised windows shell??
If so, can you disable it by using api's????
Thanx
Code:In declarations
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
' In module
Property Let CtrlAltDelDisable(bDisabled As Boolean)
SystemParametersInfo 97, bDisabled, CStr(1), 0
End Property
'In code
CtrlAltDelDisable = True
'or
CtrlAltDelDisable = False
Thanx