Click here to Skip to main content
15,912,082 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Project settings Pin
Carlos Antollini22-Jan-04 11:36
Carlos Antollini22-Jan-04 11:36 
GeneralProject settings... I found the problem! Pin
adonisv22-Jan-04 11:50
adonisv22-Jan-04 11:50 
GeneralRe: Project settings... I found the problem! Pin
Prakash Nadar22-Jan-04 21:44
Prakash Nadar22-Jan-04 21:44 
GeneralRe: Project settings... I found the problem! Pin
Steve S23-Jan-04 0:26
Steve S23-Jan-04 0:26 
GeneralHow do you go from Release back to Debug? Pin
adonisv23-Jan-04 6:35
adonisv23-Jan-04 6:35 
GeneralRe: How do you go from Release back to Debug? Pin
Steve S23-Jan-04 6:45
Steve S23-Jan-04 6:45 
GeneralThe program no longer executes! Pin
adonisv23-Jan-04 6:53
adonisv23-Jan-04 6:53 
GeneralRe: Project settings... I found the problem! Pin
Mike Dimmick23-Jan-04 1:04
Mike Dimmick23-Jan-04 1:04 
John Robbins (of MSDN Magazine's Bugslayer column) recommends always compiling your release builds with debugging information turned on. You just don't distribute your debugging symbols to the end customer.

Enabling the /DEBUG switch to the linker causes it to go a little pessimistic and include everything from all libraries. For a release build, you'll probably want to turn /OPT:REF on, which tells it to only include referenced blocks. In combination with the /Gy compiler switch, this causes any unreferenced code and data to be eliminated, reducing the size of your executable.

If your program crashes, you can now use tools like CrashFinder[^] (look about half-way down the page) to turn the crash address into a source file and line number.
Generalmatrix, inverse 3d orientation, Oo help.. Pin
Kuniva22-Jan-04 9:57
Kuniva22-Jan-04 9:57 
Questionis there ANYBODY who could ever compile the Vision SDK? Pin
andreas.schaerer22-Jan-04 8:29
andreas.schaerer22-Jan-04 8:29 
AnswerRe: is there ANYBODY who could ever compile the Vision SDK? Pin
Joaquín M López Muñoz22-Jan-04 9:15
Joaquín M López Muñoz22-Jan-04 9:15 
GeneralSoftware error running a Visual C++ application Pin
satcat22-Jan-04 7:11
satcat22-Jan-04 7:11 
GeneralRe: Software error running a Visual C++ application Pin
John R. Shaw22-Jan-04 7:27
John R. Shaw22-Jan-04 7:27 
GeneralRe: Software error running a Visual C++ application Pin
Michael Dunn22-Jan-04 8:56
sitebuilderMichael Dunn22-Jan-04 8:56 
GeneralRe: Software error running a Visual C++ application Pin
satcat22-Jan-04 14:35
satcat22-Jan-04 14:35 
Generalneed some help (3d object reconstruction from 2d images) Pin
ibrahim_egy22-Jan-04 7:04
ibrahim_egy22-Jan-04 7:04 
GeneralRe: need some help (3d object reconstruction from 2d images) Pin
Andrew Walker22-Jan-04 13:30
Andrew Walker22-Jan-04 13:30 
Questionhow to use the resource file to store all strings? Pin
Binayak22-Jan-04 6:27
Binayak22-Jan-04 6:27 
AnswerRe: how to use the resource file to store all strings? Pin
David Crow22-Jan-04 6:48
David Crow22-Jan-04 6:48 
AnswerRe: how to use the resource file to store all strings? Pin
John R. Shaw22-Jan-04 6:48
John R. Shaw22-Jan-04 6:48 
AnswerRe: how to use the resource file to store all strings? Pin
J. Eric Vaughan22-Jan-04 6:53
J. Eric Vaughan22-Jan-04 6:53 
QuestionHow to get notified, if selection of CListCtrl changes Pin
stammt22-Jan-04 5:58
stammt22-Jan-04 5:58 
AnswerRe: How to get notified, if selection of CListCtrl changes Pin
David Crow22-Jan-04 6:50
David Crow22-Jan-04 6:50 
Generalnetwork share Pin
orcun colak22-Jan-04 5:48
orcun colak22-Jan-04 5:48 
GeneralRe: network share Pin
Mukkie25-Jan-04 8:09
Mukkie25-Jan-04 8:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.