A first chance exception is an exception thrown and handled by running code. Catching first chance exceptions can give a clear view about what is going wrong the first chance it occurs.

learn more… | top users | synonyms

1
vote
1answer
83 views

Exception being raised as I enter into function before code can be executed

As always, I'm probably missing something obvious here. I can't post the entire source code, because it's work-related but I have a templated Matrix class with a mulMM (multiply Matrix by Matrix) ...
2
votes
1answer
101 views

What does the System.ArgumentOutOfRangeException mean? (vb.net)

I am having the 'A first chance exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll' exception and it is affecting my program. Here is my code. Below it is my textual ...
0
votes
0answers
103 views

Program crashes, but Debug Diag says it's a first chance exception, is that correct?

Probably this is a normal situation, but I am confused. I am running my C# Debug application from Visual Studio. DebugDiag is set up to attach to the process automatically. I have a rule to collect ...
0
votes
0answers
72 views

The RPC server is unavailable error

Well running my program in debug mode (visual studio) about the time GetOpenFileName() gets executed I get an error in the debug output: First-Chance exception at 0x752BC41F (KernelBase.dll) in ...
0
votes
0answers
171 views

First-chance exception at 0x663FCCD2 (msvcp110d.dll)

I'm working on a project for school, but I ran into a hiccup. I have a class called scheme, which consists of another class called "Token". A scheme looks like this: class scheme { public: Token ...
1
vote
1answer
142 views

Crash over unhandled first chance exception on Win7 64bit (no issue on XP 32bit, Linux 64bit)

I encountered a strange problem while coding a OpenGl program with C++ under Visual Studio Express 2010. I use: Windows 7 64bit, OpenGl 4.x My partner uses: Windows XP 32bit, Visual Studio Express ...
2
votes
0answers
68 views

How to suppress repetitions of specific first chance exceptions from 3d-party component if I have NOT access to its source code?

My program in C# 4.0 is using 3d-party library through which launches a process of for continuously getting the flux of data through DDE from external source on the internet. After launching the ...
3
votes
0answers
245 views

WebClient.DownloadString gives first chance exception

A call to WebClient.DownloadString gives a first chance exception: IOException: The specified registry key does not exist. For some time now I'm recieving first chance exceptions running our ...
0
votes
0answers
133 views

To not show “first-chance exception” dialog

How can i switch off this dialog? I wouldn't mind the info "first-chance exception has happened" in the Output window, but i don't want to have the first-exception dialog. Because i have to press ...
7
votes
1answer
205 views

What do the hex numbers in the “first-chance exception…” messages mean?

For example, in the message: First-chance exception at 0x757bd36f in foo.exe: Microsoft C++ exception: _ASExceptionInfo at memory location 0x001278cc.. What does 0x757bd36f and 0x001278cc ...
0
votes
1answer
521 views

Prevent first chance exceptions in Output windows

In Visual Studio 2010, is it possible to prevent first chance exceptions from writing to the Output window? We have a scenario where there are lots of casts that are failing by design, and the output ...
3
votes
1answer
181 views

Why am I getting a RPC server error using a SaveFileDialogue in a WinForms app?

I'm getting an error when I try to use the SaveFileDialogue in a WinForms app. I must be missing something as the error makes no sense (to me!)! The error is: "First-chance exception at ...
1
vote
5answers
906 views

C++ LoadLibrary throws First-Chance Exception, yet works?

I finished my small application and I am trying to make sure I have no memory leaks and no bugs. After looking at my Output I noticed that one of my functions is throwing a First-Chance exception, yet ...
0
votes
2answers
631 views

Temporally disable first-chance exceptions

Is there a way of temporally disable first-chance exceptions in Visual C++? Something like this: void someFunc() { disableFirstChanceExceptions(); try { // some code } catch ...
0
votes
0answers
686 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 -> ...
4
votes
1answer
3k 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 ...
12
votes
1answer
3k 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 ...
0
votes
1answer
3k 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 ...
2
votes
2answers
1k 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 ...
0
votes
1answer
268 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 ...
1
vote
2answers
2k 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
2k 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
1k 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 ...
1
vote
2answers
1k 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 ...
1
vote
1answer
136 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 ...
5
votes
4answers
11k 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 ...
8
votes
2answers
824 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) ...
6
votes
3answers
3k views

Suppress First Chance Exceptions

Is it possible to supress 1st chance supressions in Visual Studio (C# debugger) for specific lines of code? I want to use 1st chance exceptions in the debugger, but there are about 50 1st chance ...
3
votes
4answers
5k views

A First Chance Exception

've been running through the MSDN help documents to get a hang of Visual Basic. After trying out the example using timers --one drags a label and timer component into the designer and adds the ...
27
votes
3answers
2k views

What is a “first chance exception”?

What exactly is a first chance exception? How and where does it originate in a .Net program? And why is it called by that peculiar name (what 'chance' are we talking about)?
0
votes
3answers
923 views

I can't get my debugger to stop breaking on first-chance exceptions

I'm using Visual C++ 2003 to debug a program remotely via TCP/IP. I had set the Win32 exception c00000005, "Access violation," to break into the debugger when thrown. Then, I set it back to "Use ...