Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

First chance exception - long at memory location?

What is this and how can I handle/fix it?

First-chance exception at 0x756fb727 in Program.exe:
Microsoft C++ exception: long at memory location 0x0018f7a4.

I am getting about a thousand of these each time I run my application. How can I track this down and fix it/

like image 677
Chris Avatar asked Nov 11 '09 16:11

Chris


2 Answers

In visual studio go to the Debug menu and select "Exceptions...". Turn on all the first chance exception handlers (they default to off).

Now when you run in the debugger it will break at the point the exception is thrown.

like image 66
Aaron Avatar answered Oct 02 '22 01:10

Aaron


Check it out

it may help you....

http://blogs.msdn.com/davidklinems/archive/2005/07/12/438061.aspx

like image 26
Ashish Avatar answered Oct 02 '22 01:10

Ashish