Link to home
Start Free TrialLog in
Avatar of meravbd
meravbd

asked on

an unhandled exeption when closing a dialog

the problem is in a MFC application:
when closing a dialog by system menu, an unhandled exeption occurs.
Avatar of yonat
yonat

It is hard to know what the problem is without seeing some code. However, one of the common causes for such a behavior is accesing a dangling pointer. This means trying to do something with a pointer you have already deleted (for example, deleting it again or trying to dereference it).

If you post some code, we may be able to provide better help.
ASKER CERTIFIED SOLUTION
Avatar of stsanz
stsanz

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial