Click here to Skip to main content
15,905,967 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
AnswerRe: Changing Tab Order Programmatically Pin
Jack Puppy28-Feb-06 2:04
Jack Puppy28-Feb-06 2:04 
AnswerRe: Changing Tab Order Programmatically Pin
khan++28-Feb-06 2:48
khan++28-Feb-06 2:48 
GeneralRe: Changing Tab Order Programmatically Pin
Blake Miller1-Mar-06 9:00
Blake Miller1-Mar-06 9:00 
GeneralRe: Changing Tab Order Programmatically Pin
khan++1-Mar-06 19:27
khan++1-Mar-06 19:27 
GeneralRe: Changing Tab Order Programmatically Pin
Blake Miller2-Mar-06 4:11
Blake Miller2-Mar-06 4:11 
GeneralRe: Changing Tab Order Programmatically Pin
khan++2-Mar-06 19:02
khan++2-Mar-06 19:02 
Questionuse of _ltoa Pin
Kranti125198428-Feb-06 0:56
Kranti125198428-Feb-06 0:56 
AnswerRe: use of _ltoa Pin
Naveen28-Feb-06 1:04
Naveen28-Feb-06 1:04 
GeneralRe: use of _ltoa Pin
Kranti125198428-Feb-06 1:47
Kranti125198428-Feb-06 1:47 
GeneralRe: use of _ltoa Pin
Cedric Moonen28-Feb-06 2:02
Cedric Moonen28-Feb-06 2:02 
AnswerRe: use of _ltoa Pin
Cedric Moonen28-Feb-06 1:19
Cedric Moonen28-Feb-06 1:19 
AnswerRe: use of _ltoa Pin
mbue28-Feb-06 2:37
mbue28-Feb-06 2:37 
GeneralRe: use of _ltoa Pin
Kranti125198428-Feb-06 17:35
Kranti125198428-Feb-06 17:35 
QuestionDeleting a file to recycle bin Pin
Chintoo72328-Feb-06 0:44
Chintoo72328-Feb-06 0:44 
AnswerRe: Deleting a file to recycle bin Pin
Jack Puppy28-Feb-06 1:23
Jack Puppy28-Feb-06 1:23 

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.