Results 1 to 2 of 2

Thread: Takeing a program out of ctrl alt delete?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    313

    Question

    How can I take a program out of the ctrl alt delete listing? And how can I completly disable ctrl alt delete?

  2. #2
    Guest
    Disable/Enabled CTRL ALT DEL:

    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
    
    'To disable Ctrl-Alt-Delete:
    Call DisableCtrlAltDelete(True) 
    
    'To enable Ctrl-Alt-Delete:
    Call DisableCtrlAltDelete(False)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width