How to Hide Your Program from Task list
This tutorial shows how to hide your application from the task list (i.e. the window which appear when Ctrl+Alt+Del is pressed).
Here are the sample codes, add the following codes in the Form's load method
1. Using Pure VB
App.TaskVisible = False
2. Using API
RegisterServiceProcess GetCurrentProcessId, 1
Note that you have to add the declaration of RegisterServiceProcess and GetCurrentProcessId