Does anyone know how to hide your vb application from the windows 2000 task list... I know how in Win 9x, but as for Win2k, it seems to be evading me....
Printable View
Does anyone know how to hide your vb application from the windows 2000 task list... I know how in Win 9x, but as for Win2k, it seems to be evading me....
Private Sub Form_Load()
App.TaskVisible = False
End Sub
Will Hide the Application from the Tasklist.
But it will be shown in the Processlist.
I do not know a way to Hide it from the Processlist.
Hope it helps.
Cheers.:)
You are too cool..though I feel a bit stupid about it now...here I am waiting to have to call the API and it's already a built in function of visual basic....
It's okay, it can show in the Process List.
Thank you much!
-Steve