VB6: invicible .exe
-
How do you start your program? Meaning do you start if from an install or from your development tool? Is this happening on more than one computer? Normally you should see it in both the processes and applications tab without doing anything. Keeping it out of applications tab will be more challenging tho.
-
both. Yes i normally see it in both tabs, but I only want to see it in the processes tab! (Like Office Outlook) Is this possible?
What special edition on Outlook do you have that does not show in the Applications tab? It shows in both on my 2010 edition, and also did with all previous versions I have ever had installed.
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
What special edition on Outlook do you have that does not show in the Applications tab? It shows in both on my 2010 edition, and also did with all previous versions I have ever had installed.
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
Hey guys, if I start my project, I can see it in the taskmanager. Is it possible to make it just visible in the processes (not in the applications)??? :doh:
-
You misunderstand, some there are two tabs in task manager, titled 'Applications' and 'Processes'. He is saying his program appears in both the 'Applications' tab and the 'Processes' tab and he wishes to remove his entry from the 'Applications' tab.
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
You misunderstand, some there are two tabs in task manager, titled 'Applications' and 'Processes'. He is saying his program appears in both the 'Applications' tab and the 'Processes' tab and he wishes to remove his entry from the 'Applications' tab.
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
You're right, I misread it. But when I fire up my Outlook 2007 I see it both in Applications AND processes... ?!?!?!
If you look in the Taskbar notifications area (Windows 7) you can see running apps that do not have visible windows or icons on the main part of the taskbar. These apps show up in the process list but not in the application list of Task Manager. There are a number of MS applications that do this and behave somewhat like a background task, generally doing nothing until the user right clicks the icon and initiates some action.
It's time for a new signature.
-
If you look in the Taskbar notifications area (Windows 7) you can see running apps that do not have visible windows or icons on the main part of the taskbar. These apps show up in the process list but not in the application list of Task Manager. There are a number of MS applications that do this and behave somewhat like a background task, generally doing nothing until the user right clicks the icon and initiates some action.
It's time for a new signature.
-
Please reply to the correct person, i.e. the one asking the question.
It's time for a new signature.
-
Hey guys, if I start my project, I can see it in the taskmanager. Is it possible to make it just visible in the processes (not in the applications)??? :doh:
-
Hey guys, if I start my project, I can see it in the taskmanager. Is it possible to make it just visible in the processes (not in the applications)??? :doh:
-
Try setting the ShowInTaskbar property to false because apps that are not displayed in the taskbar will not be displayed in the applications tab if you have noticed.
-
Sry but I see no TaskVisible property from my form? :doh: *EDIT* ooh sry its APP.TaskVisible = false thanks a lot :rose:
-
Hey guys, if I start my project, I can see it in the taskmanager. Is it possible to make it just visible in the processes (not in the applications)??? :doh:
Use this statment:
App.TaskVisible = False
This statment will hide your form from applications list. And it can be seen at Process. If you Run it From IDE, it will not create any process. It is executed from IDE(vb6).