Hi Everyone,
Is there anyway to disable the CTRTL+ALT+DEL key in Windows NT. I have some code which works in Win 95/98 but not in NT.
Thanks for your help.
Printable View
Hi Everyone,
Is there anyway to disable the CTRTL+ALT+DEL key in Windows NT. I have some code which works in Win 95/98 but not in NT.
Thanks for your help.
Is this the code you are using?
Public Sub DisableCRTL_ALT_DEL()
Dim ret As Integer
Dim pOld As Boolean
ret = SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, pOld, 0)
End Sub
Lee
Hi Lee,
Yes i am using the API SystemParametersInfo, but it dont work in NT.
Any ideas how can i do it in NT
Thanks
Hmmm, I do not understand why it won't work in NT.
Sorry! I'm just a Win98 kinda guy!
If you find out, please share!!
Lee