Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Data Capture Pin
chaitanya2228-Feb-06 7:20
chaitanya2228-Feb-06 7:20 
QuestionRe: Data Capture Pin
David Crow28-Feb-06 7:33
David Crow28-Feb-06 7:33 
AnswerRe: Data Capture Pin
chaitanya2228-Feb-06 22:20
chaitanya2228-Feb-06 22:20 
GeneralRe: Data Capture Pin
David Crow1-Mar-06 2:07
David Crow1-Mar-06 2:07 
QuestionRemove dependency of MSVCP80 and MSVCR80 Pin
Dominik Reichl28-Feb-06 3:46
Dominik Reichl28-Feb-06 3:46 
QuestionRe: Remove dependency of MSVCP80 and MSVCR80 Pin
David Crow28-Feb-06 3:58
David Crow28-Feb-06 3:58 
AnswerRe: Remove dependency of MSVCP80 and MSVCR80 Pin
Dominik Reichl28-Feb-06 4:13
Dominik Reichl28-Feb-06 4:13 
AnswerRe: Remove dependency of MSVCP80 and MSVCR80 Pin
mbue28-Feb-06 4:28
mbue28-Feb-06 4:28 
GeneralRe: Remove dependency of MSVCP80 and MSVCR80 Pin
David Crow28-Feb-06 4:42
David Crow28-Feb-06 4:42 
AnswerRe: Remove dependency of MSVCP80 and MSVCR80 Pin
Joe Woodbury28-Feb-06 9:34
professionalJoe Woodbury28-Feb-06 9:34 
Questionwriting to stdin of console application Pin
9ine28-Feb-06 3:36
9ine28-Feb-06 3:36 
QuestionRe: writing to stdin of console application Pin
David Crow28-Feb-06 3:53
David Crow28-Feb-06 3:53 
AnswerRe: writing to stdin of console application Pin
9ine28-Feb-06 4:20
9ine28-Feb-06 4:20 
Questionlibs Pin
derek728-Feb-06 2:58
derek728-Feb-06 2:58 
AnswerRe: libs Pin
David Crow28-Feb-06 3:09
David Crow28-Feb-06 3:09 
GeneralRe: libs Pin
derek728-Feb-06 3:38
derek728-Feb-06 3:38 
QuestionRe: libs Pin
David Crow28-Feb-06 3:51
David Crow28-Feb-06 3:51 
AnswerRe: libs Pin
derek728-Feb-06 13:32
derek728-Feb-06 13:32 
AnswerRe: libs Pin
mbue28-Feb-06 4:10
mbue28-Feb-06 4:10 
Questionwhy does it not debug ? Pin
derek728-Feb-06 2:44
derek728-Feb-06 2:44 
AnswerRe: why does it not debug ? Pin
toxcct28-Feb-06 2:47
toxcct28-Feb-06 2:47 
AnswerRe: why does it not debug ? Pin
khan++28-Feb-06 2:56
khan++28-Feb-06 2:56 
AnswerRe: why does it not debug ? Pin
mbue28-Feb-06 3:06
mbue28-Feb-06 3:06 
The debug info of crt*.obj or -.lib is sometimes not included to the debug database or the compiler can't find them. The reason can be a manually installation of DevStudio or installation to another path than the default path. Therefore you have to tell the compiler where the source code file resides.

But you can define your own assert.

#ifdef _DEBUG<br />
#define ASSERT(B)  if(!(B)){ __asm{ int 3 } }<br />
#else<br />
#define ASSERT(B)<br />
#endif

QuestionRe: why does it not debug ? Pin
David Crow28-Feb-06 3:12
David Crow28-Feb-06 3:12 
QuestionChanging Tab Order Programmatically Pin
BiswaR28-Feb-06 1:59
BiswaR28-Feb-06 1:59 

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.