-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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
_HAS_ITERATOR_DEBUGGING=0
My question is what other things do fellow SOers use, add, define, in order…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am working on an ASP.NET web app using Visual Studio 2008 and a third-party library.
Things are fine in my development environment. Things are also good if the web app is deployed in Debug configuration. However, when it is deployed in Release mode, SerializationExceptions appear intermittently…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm using Visual Studio 2008 (programming in c).
I've a weird problem I worte a program that has 2 threads that runs simultaneously, a recording thread (using audio card to record into memory) and a translation thread (using a speech engine to recognize the words). when I run my program in…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Just doing some testing/prototyping with ClickOnce. Does anyone know why I can publish with CLickOnce when its set to 'debug' mode but not when its set to 'release' mode?
I dont even get an error message for the latter. The output folder remains empty as nothing has happened. Once I switch to Debug…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
during debug mode or while i am doing testing, i need to print lost of various information, so i use this method
ifdef TESTING
// code with lots of debugging info
else
// clean code only
endif // TESTING`
Is this the good method, or is there any other simple and elegant method.
But this way…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Running Tomcat through eclipse works fine in non-debug mode, but not in debug mode. When I try to start the Tomcat server in debug mode, the console output looks fine for a while, but then starts slowing down and eventually just stops, pegging the cpu at 100%. I don't think it's relevant, but just…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have a code in Visual Studio 2008 in C++ that works with files just by fopen and fclose.
Everything works perfect in Debug mode. and I have tested with several datasets.
But it doesn't work in release mode. It crashes all the time.
I have turned off all the optimizations, also there is no dependency…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a .NET project that for some reason gets stuck in debug mode. I've changed the compile mode from debug to release in the toolbar, but my project ends up in the debug directory anyway. Seems like VS is not updating the SLN file or something. Please help!
The reason I am asking about this is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm having a problem compiling an application which uses Core-Plot in debug mode. It works absolutely fine compiling in release mode, but when I compile in debug mode I get an error that the header file for Core-Plot can't be found. Any idea which of the many settings in x-cide might be causing this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a failure in some inner library function in Octave. I want to debug the calling function, but I don't know how to do it.
How can I see the stack trace?
How can I move between frames?
>>> More