Unhandled exception

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
 
B

Bruno van Dooren

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top