• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

MS Visual C++ .NET Question

Baseline

Member
How do you turn on Use MFC in a Static Library at a certain point in time in your project? I know that in the beginning when you create an MFC application, there are some wizard options and one is to enable Use MFC in a Static Library, but that makes it so that it's permanently on throughout the whole project right? I want to turn it on for my final release and turn it off when debugging, testing and compiling. Anyone know how to do this? I searched MSDN and only found articles on doing this in VC++ 6.0..

Dan
 
Right click on the Project name in the Solution Explorer (not the solution name)->Properties->Configuration Properties->General->Use of MFC
 
Back
Top