|
Hello everyone,
I'm still a newbie in C++ programming, however I have a lot of energy to learn it. I use Visual Studio 6 and have the following "problem":
Every time I choose "New Project -> Win32 Console Application -> A Simple Application/An Empty Project" the program starts with predefined options, e.g. precompiled header(Simple Application) or lack of any source or header files (Empty Project). I don't like either setting: the best way for me would be to make Visual Studio create new project with all options of the Simple Application, but with Precompiled Header option turned off. Instead I have to manually turn this option off each time I create a new project.
My question is: is there a possiblity to change the default options of Win32 Console Application projects? If so, I'd be grateful for any advice.
Thanx in advance,
rosol11
|
|
|
If you don’t want to use precompiled headers in your application go to the Solutions Explorer. if it’s not visible then use Ctrl-Alt-l to open it. Right click on the project name and select properties. The Properties dialog will open. Select C/C++ and then select Precompiled Headers. For the option Create/Use Precompiled Headers select Not Using Precompiled Headers. Once you have done this you can remove the #include “stdafx.h” from your code.
|
|
|
|
|
|
|
|