📜 ⬆️ ⬇️

Visual Studio 2008 Win32 Wizard MOD

I have always disliked the default settings that Visual Studio installed when building Win32 applications. Every time when creating a new project (even the most meager), it was necessary to disable Unicode every time, Precompiled Headers (in small programs this is useless), to include static linking of all necessary libraries for the Release version. I wanted to take away these troubles.
This mod changes the window for creating standard Win32 applications in Visual Studio 2008. The default settings have been changed to more convenient ones for small projects, new options have been added.

VS2008 win32 wizard MOD
Major changes:
Download: vs2008_win32_wizard_mod.zip
The contents of the archive must be extracted to the root directory of Visual Studio 2008. Just in case, you can make copies of the files to be replaced.

Upd. If you want the Unicode checkbox to be enabled by default in the wizard, you will have to modify the \ VC \ VCWizards \ AppWiz \ Generic \ Application \ html \ 1033 \ AppSettings.htm file a little.
We are looking for the function function InitDocument (document) and before calling InitControls (); add:
USE_UNICODE.checked = true;

')

Source: https://habr.com/ru/post/51632/


All Articles