somewhere in the project settings there's a 'do not create console' setting. don't recall exactly where, shouldn't be hard to find, just look through them..
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm creating my first win32 programs, and when I test my exe files I always get a console in addition to the main window. How can I get rid of it?
I'm new to win32 programming so this might be a very simple thing, but I couldn't figure it out. Thanks in advance!
somewhere in the project settings there's a 'do not create console' setting. don't recall exactly where, shouldn't be hard to find, just look through them..
Project|Project Options...->Compiler tab->Linker options.
-mwindows
This tells GCC that you are specifying the machine type. In this case, win32 PE executable.
Kip
Thanks guys!
I hope my next question is more interesting / challenging :)