VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Hide/show an aplication in win98/me task list (crtl+alt+del)

by Augusto (1 Submission)
Category: Windows API Call/Explanation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 15th October 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Hide/show an aplication in win98/me task list (crtl+alt+del)

API Declarations


'module1.hide hide the aplication in the win98/me task list
'module1.show show the aplication in the win98/me task list
'note: it don't work on win nt ,win2k and xp
'for more usefull modules emailme at [email protected]

Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Private Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, _
ByVal dwType As Long) As Long

Private Const RSP_SIMPLE_SERVICE = 1
Private Const RSP_UNREGISTER_SERVICE = 0

Rate Hide/show an aplication in win98/me task list (crtl+alt+del)



    Dim pid As Long
    Dim lngRet As Long
    pid = GetCurrentProcessId()
    lngRet = RegisterServiceProcess(pid, RSP_SIMPLE_SERVICE)
End Sub

Public Sub Show()
    Dim pid As Long
    Dim lngRet As Long
    pid = GetCurrentProcessId()
    lngRet = RegisterServiceProcess(pid, RSP_UNREGISTER_SERVICE)
End Sub

Download this snippet    Add to My Saved Code

Hide/show an aplication in win98/me task list (crtl+alt+del) Comments

No comments have been posted about Hide/show an aplication in win98/me task list (crtl+alt+del). Why not be the first to post a comment about Hide/show an aplication in win98/me task list (crtl+alt+del).

Post your comment

Subject:
Message:
0/1000 characters