#include <windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
HWND hwnd;
wchar_t pszNewWindowTitle[MAX_PATH]={0};
GetConsoleTitle(pszNewWindowTitle, sizeof(pszNewWindowTitle));
hwnd = FindWindow(NULL, pszNewWindowTitle);
if(hwnd)
ShowWindow(hwnd, SW_HIDE);
// Your Code..
return 0;
}
Friday, May 8, 2009
Force application not to appear at taskbar
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment