Tagged Questions
The first-chance-exception tag has no wiki summary.
8
votes
1answer
594 views
.NET - First chance exception listener for intensive debugging?
This is probably unrealistic, but would it be possible to enable a component to be notified of all first chance exceptions occuring in its process?
We have some third-party (contracted by us) ...
3
votes
4answers
6k views
First chance System.Configuration.ConfigurationErrorsException “This element is not currently associated with any context”
Does anyone know what this particular exception mean and how to fix it?
Note, that I am not asking for help on suppressing it in the Exceptions dialog. I want to understand the root cause of it and ...
2
votes
2answers
290 views
A first chance exception of type 'System.Xml.XmlException' occurred in System.Xml.dll
When I start my application (it is a client which connect with WCF to a Service) I see in the Output-Window of Visual Studio many lines with
A first chance exception of type ...
1
vote
0answers
81 views
C++ : How can I solve a first-chance exception caused at an unknown point?
A C++ project I'm working on terminates upon throwing a first-chance exception. This occurs in Visual Studio 2008 in Debug mode when I first try to access a map<pair<int,int>, int> which ...
1
vote
1answer
30 views
How do I enable Visual Studio 2010 to break when a First Chance Exception happens?
I was reading this regarding Debugging first chance exception on Visual Studio 2010, and I am not able to find this option.
How can I enable Visual Studio 2010 to break exactly when a First chance ...
1
vote
1answer
90 views
vs.net first time exceptions filter
In visual studio you can activate break on first change exceptions. In my application I would like to ignore certain exceptions (validation and installation) and I have to disable those by hand.
Is ...
0
votes
0answers
35 views
Visual Studio 2008: Enabled break on first-chance exception, now disabled but still breaks?
I enabled breaking for first-chance exceptions in Visual Studio 2008 for my C++ project using Debug -> Exceptions and checking Common Language Runtime Exceptions -> System -> ...
0
votes
1answer
395 views
A first chance exception occurred… and I don't know why
Whenever I try to debug my Windows Phone 7 C# app, I get the following message in the Output window:
A first chance exception of type 'System.OverflowException' occurred in mscorlib.dll
A first ...
0
votes
1answer
126 views
Application Phantom Crash When One Function Call Added
My application has some debug code written specifically to send debug data to the Output Window when running in debug mode. When the function GetCurrTime is called in the below code snippet the ...
0
votes
1answer
602 views
WCF - Many many many first chance exceptions being thrown - then crashes App
I have a WPF application (Host) that is, among other things, self-hosting WCF with a number of ServiceHosts (an example shown below)
host= new ServiceHost(typeof(Data));
ServiceEndpoint endpoint = ...
0
votes
5answers
1k views
crashes not trapped with MS VS Debugger - how to catch?
I'm getting random crashes from my c# app (Windows 7/VS2008), and it doesn't give me a usual stack trace, but rather suggests to close/debug/find info windows 7 kind of dialog box. I'm running the app ...
0
votes
0answers
725 views
vb.net A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll
I just installed Visual Basic 2010 Express.
I created a simple console application:
Module Module1
Sub Main()
Dim i As Integer
i = 0
End Sub
End Module
I'm getting the ...
0
votes
2answers
628 views
Display exception information and Debug.Print() messages in Immediate Window
A friend of mine claims that calls to Debug.Print() as well as first-chance exception notifications appear in the Immediate Window for him. I found this surprising; for me they only appear in the ...