Hi All,
Here is the tips for the difference between debug mode and release mode build in VC++.
Each build will be having separate output file path and separate settings. In debug mode, the compiler will automatically detect the linked files on the local system and it will automatically initialize all the variables and structures(ASSERT() used to track the debug mode error issues).
In release mode the Application is built in compiler independent and all the PATHS for the linked dlls should be copied for the system path or the application path. (VERIFY() function is used to trap the errors)
thanks
