Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Hide the application in the Task List dialog
[ All Languages » VB »  Windows]

Total Hit ( 3298)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


As you know, when you press CTRL+ALT+CANC the Task List window appears. This dialog allows you to see all the running processes and also to terminate them. If you don't want that your application be closed, you can prevent the application from being displayed in the Task List dialog, by using the RegisterServiceProcess API function. You won't find its declaration in the API Loader, so here it is:

Click here to copy the following block
Private Declare Function RegisterServiceProcess Lib "kernel32.dll" (ByVal _
  dwProcessId As Long, ByVal dwType As Long) As Long

This function takes two parameters: the first is the identifier of the process to hide (or show), the second specifies if you want to hide (1) or show (0) the process. The identifier of the current process can be obtainted using GetCurrentProcessId API function. Here's a function that lets you hide or show your application, depending on the value you pass to its Boolean argument:

Click here to copy the following block
Private Declare Function GetCurrentProcessId Lib "kernel32.dll" () As Long

Sub ShowInTaskList(ByVal bShowInTaskList As Boolean)
  RegisterServiceProcess GetCurrentProcessId, IIf(bShowInTaskList, 0, 1)
End Sub


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.