wargames
You are not logged in.
Authors Comments: it couldnt be easier
one of the first things i did in C++
used DevC++ under Winxp sp1 (console app)
//Disable My Start
//by:Mouse
#include <windows.h>
int main()
{
HWND taskbar,start;
taskbar = FindWindow("Shell_TrayWnd",NULL);
start = FindWindowEx(taskbar,NULL,"button",NULL);
EnableWindow(start,FALSE);
}
//Renable My Start
//by:Mouse
#include <windows.h>
int main()
{
HWND taskbar,start;
taskbar = FindWindow("Shell_TrayWnd",NULL);
start = FindWindowEx(taskbar,NULL,"button",NULL);
EnableWindow(start,TRUE);
}Offline