Results 1 to 2 of 2

Thread: little help!

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2000
    Posts
    4

    Post

    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.
    --[ Keep Thingking ]--

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    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
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

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