Feb 14, 2002 #1 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.
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.
Feb 14, 2002 #2 Zyrenthian Programmer Mar 30, 2001 1,440 US 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 Upvote 0 Downvote
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
Feb 14, 2002 #3 Zyrenthian Programmer Mar 30, 2001 1,440 US Also look into the project settings and see if they are different for release and debug. Matt Upvote 0 Downvote
Feb 18, 2002 Thread starter #4 Plaxx Programmer Feb 14, 2002 2 ES Thanks for your help. Going to check it now. Upvote 0 Downvote
Feb 18, 2002 #5 bubak Programmer Jun 25, 2001 208 SK Sometimes, they are alsom some message handling functions with incorrect headers. They work in debug, but doesn't in release.... bubak Upvote 0 Downvote
Sometimes, they are alsom some message handling functions with incorrect headers. They work in debug, but doesn't in release.... bubak