View Single Post
  #75 (permalink)  
Old 03-10-2008, 07:04 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 299
Karpagarajan is on a distinguished road
Smile Re: Visual C++ Tips & Tricks

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
__________________
Karpagarajan. R
Necessity is the mother of invention
Reply With Quote