Results 1 to 3 of 3

Thread: hiding from ctrl+alt+del

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2000
    Posts
    4

    Unhappy

    Anyone know how to hide a program from the ctrl+alt+del menu?

  2. #2

  3. #3
    Frenzied Member Vlatko's Avatar
    Join Date
    Aug 2000
    Location
    Skopje, Macedonia
    Posts
    1,409
    This will do:
    Code:
    Private Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, ByVal dwType As Long) As Long
    Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long
    Const RSP_SIMPLE_SERVICE = 1
    Const RSP_UNREGISTER_SERVICE = 0
    Private Sub Form_Load()
    Dim curp As Long
    curp = GetCurrentProcessId
    RegisterServiceProcess curp, RSP_SIMPLE_SERVICE
    End Sub
    I am become death, the destroyer of worlds.
    mail:[email protected]

    • Visual Basic 6.0 & .NET
    • Visual C++ 6.0 & .NET
    • ASP
    • LISP
    • PROLOG
    • C
    • Pascal

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