Release Vs Debug mode ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I'm experiencing a bizar problem with MS VC++, and just
can't figure out what's going on.
I Build a solution that compiles pretty well, it works
good when I launch it in the Visual C++ Editor (F5 or
shift+ F5) but the .exe file generated in a release mode
doesn't work properly !
Anye clue ??
 
I'm experiencing a bizar problem with MS VC++, and just
can't figure out what's going on.
I Build a solution that compiles pretty well, it works
good when I launch it in the Visual C++ Editor (F5 or
shift+ F5) but the .exe file generated in a release mode
doesn't work properly !

Have a look at "Common Problems Switching from Debug to Release Build"
in your VC++ help.

If those don't help you'll need to debug your release version to
locate the cause - see "Turn on Generation of Debug Information for
the Release Build" in your VC++ help.

Dave
 
I tried the links you gave me, but I think this won't
help, since the program compiles in release mode.
the problem is that the .exe generated (either under
release or debug mode) doesn't do what he is supposed to
do (he dosn't call an external dll properly), while the
program works good in the debugger...
Thanks anyway !
 
Back
Top