Tagged Questions

6
votes
1answer
390 views

C++ defines for a 'better' Release mode build in VS

I currently use the following preprocessor defines, and various optimization settings: WIN32_LEAN_AND_MEAN VC_EXTRALEAN NOMINMAX _CRT_SECURE_NO_WARNINGS _SCL_SECURE_NO_WARNINGS _SECURE_SCL=0 ...
3
votes
1answer
45 views

Identify debugging in VisualStudio

I have an interesting problem. Is it possible to identify if an assembly is running in Visual Studio? Look at the following code. if(FoundThatYouAreDebuggingInVisualStudio) { Print "Hello" } ...
3
votes
7answers
718 views

Visual C++ - Why bother with Debug Mode?

So I have just followed the advice in enabling debug symbols for Release mode and after enabling debug symbols, disabling optimization and finding that break-points do work if symbols are complied ...
2
votes
1answer
939 views

Why are my binaries not placed in the /bin/release folder when I build a Windows Service in C#?

I am new to C# and VS 2010, and am following an online guide to creating a C# Windows Service in Visual Studio 2010. When I try and build the application however, I don't get any files created under ...
2
votes
2answers
675 views

Problem drawing graphics to user control

My application pops a form as a child of the main form. On the form is User Control with a Panel where Graphics are rendered. When executed from Visual Studio in debug mode the drawing is often ...
0
votes
1answer
55 views

Publishing using different Web.config

I have a Visual Studio 2010 web-application solution I have created. In this solution I have created a new mode in the configuration manager called "MyProjectName". I have created an additional ...
0
votes
1answer
162 views

How can I link my project to the debug version of the MFC DLL in Release mode?

I am working on a project which is in release build. I can't work on debug build for certain reason. In the Release build, can I instruct Visual Studio to link against debug version of MFC DLLs, so I ...
0
votes
3answers
636 views

Problem in compiling in release mode --VC++

I am compiling my project in the release mode in VC++. I have a .def file where i have declared the setLog and now i am getting following error Linking... Creating library Release/HKL.lib and ...