Is there any way to get Visual Studio (I'm using 2012) to break on the offending line of code when there is an unhandled exception/assertion fails without first displaying the Abort, Retry, Igore or the Break, Ignore, Continue dialog, while also redirecting its error messages to the debug output window? I'm working with native C++ code.
There does not seem to be any option to do this and the _CrtSetReportMode
function does not have any effect on my system.
This similar question is about managed code so it is of no assistance.
I am asking because I really don't want to have to click through one or two dialogs when something goes wrong if I'm already running an application in the debuggger. If memory serves me, other IDEs, such as Xcode, break by default without any unnecessary and annoying popups.