|
-
March 5th, 2003, 02:38 AM
#1
Banned
VB - Hide Program From Ctrl Alt Del
This does not appear to work on XP
----Put This On A Form----
Private Sub Form_Load()
HideMeFromTaskList
End Sub
Private Sub HideMeFromTaskList()
On Error Resume Next
RegisterServiceProcess GetCurrentProcessId, 1
End Sub
----Put This In A Module----
Public Declare Function RegisterServiceProcess Lib "kernel32" (ByVal ProcessID As Long, ByVal ServiceFlags As Long) As Long
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|