Wednesday, October 28, 2009

How to Hide Console in C++

Example:-
#include 
#include
int main()
{
HWND hWnd
= GetConsoleWindow();
ShowWindow( hWnd, SW_HIDE );

return 0;
}

No comments: