How to hide an application from Windows
[Originally posted by Alex]
Hi, all
I would appreciate if you could tell me how to hide a vb application from Windows NT Task Manager Application tab?
I want to run a VB application as from.visible = false. But when I run that application, I can see it in the Application Tab of Task Manager.
Cheers
Alex
Re:How to hide an application from Windows
[Originally posted by FreeVBCode.com]
App.ShowInTaskBar = false
Re:Re:How to hide an application from Windows
[Originally posted by Alex]
THanks
But it does not hide it from the Task Manager, Applications tab. It will only hide it from desktop task bar. Any idea how to hide it from Task Manager, Applications TAB?
Cheers
Re:Re:Re:How to hide an application from Windows
[Originally posted by FreeVBCode.com]
Actually, try app.TaskVisible = false
Re:Re:Re:Re:How to hide an application from Windows
[Originally posted by Alex]
Thank you very much. It works cool
Thanks again