Unhandled exception

  • Thread starter Thread starter Wangbo
  • Start date Start date
W

Wangbo

Hi, all
I encounted a very strange problem in my App, in debug mode, when I exit
my App, it often told me something like "Unhandled exception at ..., user
breakpoint", press F5, it skiped this problem. But if I run it without
debug, everything is OK, Can anyone help me?

Thanks!
bo
 
Hi, all
I encounted a very strange problem in my App, in debug mode, when I exit
my App, it often told me something like "Unhandled exception at ..., user
breakpoint", press F5, it skiped this problem. But if I run it without
debug, everything is OK, Can anyone help me?

What is the exception message?
The difference between debug and release build is that there is a lot more
runtime checking going on in the background to catch wrong behavior like
buffer overflows and things like that.

An exception like that is most likely telling you that you did something
wrong.
Read the exception message, let the debugger break on the place where the
exception was thrown, and try to find out what the problem is.

The fact that you don't get an exception in release mode does not mean that
there cannot be a problem.

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top