Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debug working, Release not working

Status
Not open for further replies.

Plaxx

Programmer
Feb 14, 2002
2
ES
I have an application that runs fine if compiled in Debug mode, while it doesn't if compiled in Release mode. Any hints on this?

Thanks in advance.
 
are you using macros that only work when

_DEBUG is defined or have you used

#ifdef _DEBUG
...
#endif

???

If not, maybe a rebuild all in release will fix it. Could be just a bad compile.

Matt
 
Also look into the project settings and see if they are different for release and debug.

Matt
 
Thanks for your help. Going to check it now.
 
Sometimes, they are alsom some message handling functions with incorrect headers. They work in debug, but doesn't in release....

bubak
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top