Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hidden Tasks in Windows 2000

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How can i develop an application that will run invisible over windows 2000 (invisible means that i cannot list it on the task manager window)?

Thanks in advance,

Marcelo.

marcelo.branquinho@intersix.com.br
 
the class initializing and window proc are not requirements. You can make programs without them:
#include<windows.h>
int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR,int)
{
return 0;//no problems
}
//is a very short and very useful program
// what makes nothing John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top