Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exception window in VS.NET 2010 is missing the "User-unhandled" column

In Visual Studio 2008, the Exceptions window has two columns with check boxes:

Visual Studio 2008

In contrast to this, in Visual Studio 2010 the column seems to be missing:

Visual Studio 2010

My questions are:

  • Is this a configuration issue on my machine or "by design"?
  • Do I have a chance to re-enable the column or to mimic the "user-unhandled" behaviour in a different way?

Update:

The following extensions are installed in my Visual Studio 2010 installation:

  • PowerCommands for Visual Studio 2010
  • Productivity Power Tools
  • Visual Studio Color Theme Editor
  • VisualSVN
  • ReSharper
like image 367
Uwe Keim Avatar asked Dec 30 '10 06:12

Uwe Keim


People also ask

How do I get rid of unhandled exception in Visual Studio?

You can also add or delete exceptions. With a solution open in Visual Studio, use Debug > Windows > Exception Settings to open the Exception Settings window. Provide handlers that respond to the most important exceptions.

What is user unhandled exception C#?

An unhandled exception occurs when the application code does not properly handle exceptions. For example, When you try to open a file on disk, it is a common problem for the file to not exist. The . NET Framework will then throw a FileNotFoundException.


1 Answers

My installation of Visual Studio 2010 does have the "User-unhandled" column:

alt text

Edit

From VS2008 Debugger does not break on unhandled exception...

As it turns out, if you do not have "Enable Just My Code (Managed Only)" checked in the Debug options, the "User-Unhandled" column does not show in the "Exceptions" dialog.

like image 134
devuxer Avatar answered Oct 08 '22 00:10

devuxer