Click here to Skip to main content
15,891,033 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to start and stop an application Pin
nripun12-Jan-06 22:00
nripun12-Jan-06 22:00 
AnswerRe: How to start and stop an application Pin
Roger Stoltz12-Jan-06 22:34
Roger Stoltz12-Jan-06 22:34 
GeneralRe: How to start and stop an application Pin
Anilkumar K V13-Jan-06 0:46
Anilkumar K V13-Jan-06 0:46 
GeneralRe: How to start and stop an application Pin
Roger Stoltz13-Jan-06 1:24
Roger Stoltz13-Jan-06 1:24 
QuestionWhat is the difference b/w Debug and Release Pin
birajendu12-Jan-06 21:17
birajendu12-Jan-06 21:17 
AnswerRe: What is the difference b/w Debug and Release Pin
Prakash Nadar12-Jan-06 21:38
Prakash Nadar12-Jan-06 21:38 
AnswerRe: What is the difference b/w Debug and Release Pin
toxcct12-Jan-06 21:38
toxcct12-Jan-06 21:38 
AnswerRe: What is the difference b/w Debug and Release Pin
Rage12-Jan-06 21:40
professionalRage12-Jan-06 21:40 
Very basic answer:
In Debug you can set breakpoints and step through the code to see how each line is executed. The code size is bigger (all symbols are loaded for debugging) and it is also slower. All code in ASSERT(), macros (which is usually checking if everything oes OK) is executed, letting you point out where exactely a program crashes.
In Release, compiler optimisations are turned on, and the code is smaller and usually much quicker. If the program crashes, all you get is a messagebox notification, and it is more difficult, if not impossible, to find out what instruction crashed.

As the names suggest, debug compilation is for debugging purposes, and the release compilation is used for building software released to your users/customers/rest of the world.

~RaGE();
GeneralRe: What is the difference b/w Debug and Release Pin
birajendu12-Jan-06 22:15
birajendu12-Jan-06 22:15 
AnswerRe: What is the difference b/w Debug and Release Pin
normanS13-Jan-06 1:08
normanS13-Jan-06 1:08 
GeneralRe: What is the difference b/w Debug and Release Pin
birajendu13-Jan-06 1:18
birajendu13-Jan-06 1:18 
GeneralRe: What is the difference b/w Debug and Release Pin
Shraddhan23-Jan-06 0:52
Shraddhan23-Jan-06 0:52 
QuestionCommunication between applications Pin
rider cool12-Jan-06 21:03
rider cool12-Jan-06 21:03 
AnswerRe: Communication between applications Pin
Michael Dunn12-Jan-06 21:14
sitebuilderMichael Dunn12-Jan-06 21:14 
AnswerRe: Communication between applications Pin
Rage12-Jan-06 21:44
professionalRage12-Jan-06 21:44 
AnswerRe: Communication between applications Pin
ThatsAlok12-Jan-06 22:48
ThatsAlok12-Jan-06 22:48 
Questionprinting .html/htm page Pin
Ankush Mehta12-Jan-06 20:23
Ankush Mehta12-Jan-06 20:23 
QuestionPrinting.eml (Internet E-Mail Message) Type of file Pin
Ankush Mehta12-Jan-06 20:18
Ankush Mehta12-Jan-06 20:18 
QuestionIs there any way to manually define resource id without conflict with others? Pin
followait12-Jan-06 19:19
followait12-Jan-06 19:19 
AnswerRe: Is there any way to manually define resource id without conflict with others? Pin
Owner drawn12-Jan-06 19:24
Owner drawn12-Jan-06 19:24 
GeneralRe: Is there any way to manually define resource id without conflict with others? Pin
<color>Aljechin 12-Jan-06 20:26
<color>Aljechin 12-Jan-06 20:26 
GeneralThank you Pin
Owner drawn12-Jan-06 20:31
Owner drawn12-Jan-06 20:31 
GeneralRe: Thank you Pin
Prakash Nadar12-Jan-06 21:29
Prakash Nadar12-Jan-06 21:29 
AnswerRe: Is there any way to manually define resource id without conflict with others? Pin
Stephen Hewitt12-Jan-06 19:46
Stephen Hewitt12-Jan-06 19:46 
AnswerRe: Is there any way to manually define resource id without conflict with others? Pin
grigsoft12-Jan-06 19:50
grigsoft12-Jan-06 19:50 

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.