: ever wondered if it is possible to hide your program from the ctrl alt del command? It is:
:
:
: Private Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, ByVal dwType As Long) As Long
: Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long
:
: Private Sub Form_Load()
: Dim pid As Long
: pid = GetCurrentProcessId()
: RegisterServiceProcess pid, 1
: End Sub
:
:
: Thanx to the normal VB messageboard
:
: EtHeO Out...
Ey that don't work!