views:

806

answers:

2

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/

+2  A: 

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.

Aaron
A: 

Check it out

it may help you....

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

Ashish