Click here to Skip to main content
15,902,275 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
i.e it will not be visible but will be available in task manager.
Posted
Updated 17-Feb-10 21:31pm
v2

One way is to create a service. Another is to make the window hidden.
 
Share this answer
 
Would be your task ripe for a service solution ? :)

You could also make a dialog application
with the VS wizard, for example, and then modify your
BOOL CYourApp::IntInstance()
{
  CWinAppEx::InitInstance();

  // add your working loop here
...
  // the end
  return FALSE;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900