![]() |
|
How to hide the console windows ? |
Chaos Maker
Member #12,260
September 2010
|
its possible ? |
LennyLen
Member #5,313
December 2004
![]() |
Try using the forum's search feature. This question has been answered many, many times.
|
Matthew Leverton
Supreme Loser
January 1999
![]() |
It depends on which IDE/compiler you use. http://www.allegro.cc/forums/search/bc09a282b787770da1a84f9422efcfed |
Chaos Maker
Member #12,260
September 2010
|
im using allegro5 and Microsoft Visual C++ 2010 |
Matthew Leverton
Supreme Loser
January 1999
![]() |
Use /SUBSYSTEM:WINDOWS, not /SUBSYSTEM:CONSOLE. |
North~
Member #12,192
August 2010
|
1HWND hidden_window;
2AllocConsole();
3hidden_window=FindWindowA("ConsoleWindowClass",NULL);
4ShowWindow(hidden_window,NULL);
EDIT:: Visual C++. ew. -------------------------------------------------- If this is possible if you don't correctly initialize memory, it should be a priority of the highest order. |
23yrold3yrold
Member #1,134
March 2001
![]() |
There's also a check box for it somewhere in VC++'s preferences IINM. -- |
Oscar Giner
Member #2,207
April 2002
![]() |
In Project properties: Names may not be 100% exact since I have MSVC in Spanish and I'm translating to English myself. -- |
Mark Oates
Member #1,146
March 2001
![]() |
Oscar Giner said: Configuration properties -> Linker -> System That's correct. More thoroughly: Project -> [project name] Properties -> Configuration properties -> Linker -> System -> SubSystem -- |
Chaos Maker
Member #12,260
September 2010
|
THANK YOU VERY MUCH! |
|