Does anybody know how to disable Ctrl-Alt-Delete in NT/2000? The site has some code on it, but it only works for Windows 98.
Also, is there a way to disable that start menu key?
I appreciate any help that you guys can offer;)
Jason
Printable View
Does anybody know how to disable Ctrl-Alt-Delete in NT/2000? The site has some code on it, but it only works for Windows 98.
Also, is there a way to disable that start menu key?
I appreciate any help that you guys can offer;)
Jason
Code:Private Declare Function EnableWindow Lib "user32" (ByVal hwnd As Long, ByVal fEnable As Long) As Long
Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Code:cmdDisable_Click()
Static bDisabled As Boolean, find_it As Long
bDisabled = Not bDisabled
find_it = FindWindowEx(0&, 0&, "Shell_TrayWnd", vbNullString)
Call EnableWindow(FindWindowEx(find_it, 0&, "Button", vbNullString), Not bDisabled)
End Sub
Code:cmdEnable_Click()
Static bDisabled As Boolean, find_it As Long
bDisabled = Not bDisabled
find_it = FindWindowEx(0&, 0&, "Shell_TrayWnd", vbNullString)
Call EnableWindow(FindWindowEx(find_it, 0&, "Button", vbNullString), bDisabled)
End Sub
zer0_flaw, your code juz disable the Start Button and not disable the Ctrl+Atl+Del or Ctrl+Esc combination key.
For that, JayLogicon you can execute a search in this forum and sure you'll get the answer or download the API Guide from www.allapi.net
regards,
No **** man. I answered his second question because that's all I knew how to do.Quote:
zer0_flaw, your code juz disable the Start Button and not disable the Ctrl+Atl+Del or Ctrl+Esc combination key
:DQuote:
Also, is there a way to disable that start menu key?
yes, there is. juz can't get ir back from my collection. Sure someone will have it.