|
-
Feb 2nd, 2004, 09:02 PM
#1
Thread Starter
Frenzied Member
[VB] Hide application (win98)
Public Declare Function GetCurrentProcessId Lib "kernel32" () As Long
Public Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, ByVal dwType As Long) As Long
Public Sub HideApp()
Dim process As Long
process = GetCurrentProcessId()
Call RegisterServiceProcess(process, 1)
End Sub
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
|
Click Here to Expand Forum to Full Width
|