Where I can disable in Microsoft-Visual-C++ showing console window?
In your console application, goto
Properties > Linker > System
change SubSystem
to Windows
and in your code replace
int _tmain(int argc, _TCHAR* argv[])
with
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
and add
#include
This should avoid showing a console window in your console application.