Feb 14, 2002 #1 Plaxx Programmer Joined Feb 14, 2002 Messages 2 Location 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 Joined Mar 30, 2001 Messages 1,440 Location 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 Joined Mar 30, 2001 Messages 1,440 Location 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 Joined Feb 14, 2002 Messages 2 Location ES Thanks for your help. Going to check it now. Upvote 0 Downvote
Feb 18, 2002 #5 bubak Programmer Joined Jun 25, 2001 Messages 208 Location 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