Click here to Skip to main content
15,907,687 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Compiler Question: Use of MFC : Use Standard Windows Libraries Pin
DeepT19-Jun-12 4:20
DeepT19-Jun-12 4:20 
GeneralRe: Compiler Question: Use of MFC : Use Standard Windows Libraries Pin
Richard MacCutchan19-Jun-12 4:32
mveRichard MacCutchan19-Jun-12 4:32 
QuestionDebugger issue Pin
Julio Cesar Nardelli Borges18-Jun-12 8:53
Julio Cesar Nardelli Borges18-Jun-12 8:53 
AnswerRe: Debugger issue Pin
Richard MacCutchan18-Jun-12 9:03
mveRichard MacCutchan18-Jun-12 9:03 
AnswerRe: Debugger issue Pin
Rajesh R Subramanian18-Jun-12 19:03
professionalRajesh R Subramanian18-Jun-12 19:03 
QuestionDisabling External Dependencies in VS2010 Pin
AmbiguousName18-Jun-12 0:01
AmbiguousName18-Jun-12 0:01 
AnswerRe: Disabling External Dependencies in VS2010 Pin
Maximilien18-Jun-12 0:42
Maximilien18-Jun-12 0:42 
AnswerRe: Disabling External Dependencies in VS2010 Pin
AmbiguousName18-Jun-12 0:59
AmbiguousName18-Jun-12 0:59 
AnswerRe: Disabling External Dependencies in VS2010 Pin
Richard MacCutchan18-Jun-12 1:32
mveRichard MacCutchan18-Jun-12 1:32 
AnswerRe: Disabling External Dependencies in VS2010 Pin
AmbiguousName18-Jun-12 1:37
AmbiguousName18-Jun-12 1:37 
GeneralRe: Disabling External Dependencies in VS2010 Pin
Richard MacCutchan18-Jun-12 2:01
mveRichard MacCutchan18-Jun-12 2:01 
AnswerRe: Disabling External Dependencies in VS2010 Pin
Luc Pattyn18-Jun-12 7:17
sitebuilderLuc Pattyn18-Jun-12 7:17 
QuestionSwitch off Debug Assertions Pin
mackel9017-Jun-12 10:02
mackel9017-Jun-12 10:02 
Hi, I have a problem, i got a huge project which works nice in release build, but in debug version I get thousands of debug assertion failures, which i realy dont want to care about.

It is this kind of thing what is failing (in afxwin2.inl): (m_hWnd is NULL)

C++
_AFXWIN_INLINE void CWnd::ShowScrollBar(UINT nBar, BOOL bShow)
    { ASSERT(::IsWindow(m_hWnd)); ::ShowScrollBar(m_hWnd, nBar, bShow); }


With these debug assertions it is not possible for me to Debug the project.

I just want to change a little part of the project, but without debugmode (i need traces and so on) this will become very hard, so it is in any way possible to switch them off ?

And yes, i know assertions are my best friend, because they tell me something is wrong, but in this case I do not want to care about what is wrong, I only want to get my work done quickly without reprogramming the application.


Thank you Wink | ;)
AnswerRe: Switch off Debug Assertions Pin
Richard Andrew x6417-Jun-12 11:44
professionalRichard Andrew x6417-Jun-12 11:44 
GeneralRe: Switch off Debug Assertions PinPopular
Erudite_Eric17-Jun-12 20:39
Erudite_Eric17-Jun-12 20:39 
GeneralRe: Switch off Debug Assertions Pin
Richard Andrew x6418-Jun-12 5:38
professionalRichard Andrew x6418-Jun-12 5:38 
GeneralRe: Switch off Debug Assertions Pin
Erudite_Eric18-Jun-12 11:42
Erudite_Eric18-Jun-12 11:42 
GeneralRe: Switch off Debug Assertions Pin
Richard MacCutchan17-Jun-12 22:18
mveRichard MacCutchan17-Jun-12 22:18 
AnswerRe: Switch off Debug Assertions Pin
jschell17-Jun-12 13:05
jschell17-Jun-12 13:05 
AnswerRe: Switch off Debug Assertions PinPopular
Chuck O'Toole17-Jun-12 14:36
Chuck O'Toole17-Jun-12 14:36 
AnswerRe: Switch off Debug Assertions Pin
Philippe Mori17-Jun-12 15:59
Philippe Mori17-Jun-12 15:59 
AnswerRe: Switch off Debug Assertions Pin
Erudite_Eric17-Jun-12 20:38
Erudite_Eric17-Jun-12 20:38 
AnswerRe: Switch off Debug Assertions Pin
AmbiguousName18-Jun-12 0:23
AmbiguousName18-Jun-12 0:23 
AnswerRe: Switch off Debug Assertions Pin
David Crow18-Jun-12 8:18
David Crow18-Jun-12 8:18 
AnswerRe: Switch off Debug Assertions Pin
jkirkerx18-Jun-12 10:37
professionaljkirkerx18-Jun-12 10:37 

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.