Question Easiest Way to code a stealth app

mikemessiah

Member
Joined
Sep 10, 2007
Messages
9
Programming Experience
3-5
Hi there,

Was wondering if anyone might have some insight into the easiest way to code a hidden app. I basically need an application to start up on boot that is hidden from task manager and any other view. The program will be used for security purposes and this is why it is required to be hidden. Any suggestions ?
 
You could simply use:

Me.Hide()
Me.ShowInTaskBar = False
Me.Opacity = 0

And its hard to detect for general computer users..
 
Back
Top