Click here to Skip to main content
15,895,142 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Crash after sending custom message (only in release mode) Pin
Matthijs Wessels17-Jul-06 5:21
Matthijs Wessels17-Jul-06 5:21 
AnswerRe: Crash after sending custom message (only in release mode) Pin
Steve S17-Jul-06 5:26
Steve S17-Jul-06 5:26 
GeneralRe: Crash after sending custom message (only in release mode) Pin
David Crow17-Jul-06 5:27
David Crow17-Jul-06 5:27 
QuestionDetect when LAN connection goes up/down, events? Pin
Moak17-Jul-06 4:27
Moak17-Jul-06 4:27 
QuestionRe: Detect when LAN connection goes up/down, events? Pin
David Crow17-Jul-06 4:33
David Crow17-Jul-06 4:33 
AnswerRe: Detect when LAN connection goes up/down, events? Pin
Moak17-Jul-06 5:44
Moak17-Jul-06 5:44 
QuestionRelease build runs slower than Debug build Pin
spiritofklanawa17-Jul-06 4:25
spiritofklanawa17-Jul-06 4:25 
AnswerRe: Release build runs slower than Debug build Pin
Kurt _B17-Jul-06 5:24
Kurt _B17-Jul-06 5:24 
GeneralRe: Release build runs slower than Debug build Pin
spiritofklanawa17-Jul-06 6:51
spiritofklanawa17-Jul-06 6:51 
QuestionLinker Warning Pin
knoxplusplus17-Jul-06 4:12
knoxplusplus17-Jul-06 4:12 
AnswerRe: Linker Warning Pin
Nibu babu thomas17-Jul-06 19:01
Nibu babu thomas17-Jul-06 19:01 
Questionquestion about the vi editor (shell scripts) Pin
wowserman17-Jul-06 3:58
wowserman17-Jul-06 3:58 
AnswerRe: question about the vi editor (shell scripts) Pin
Steve S17-Jul-06 4:55
Steve S17-Jul-06 4:55 
GeneralRe: question about the vi editor (shell scripts) Pin
wowserman17-Jul-06 15:20
wowserman17-Jul-06 15:20 
GeneralRe: question about the vi editor (shell scripts) Pin
Hamid_RT17-Jul-06 19:26
Hamid_RT17-Jul-06 19:26 
GeneralRe: question about the vi editor (shell scripts) Pin
Steve S17-Jul-06 21:51
Steve S17-Jul-06 21:51 
QuestionMenu in a MDI app (MFC 7.1) Pin
AkiraOne17-Jul-06 3:57
AkiraOne17-Jul-06 3:57 
AnswerRe: Menu in a MDI app (MFC 7.1) Pin
Nibu babu thomas17-Jul-06 18:28
Nibu babu thomas17-Jul-06 18:28 
GeneralRe: Menu in a MDI app (MFC 7.1) Pin
AkiraOne17-Jul-06 20:29
AkiraOne17-Jul-06 20:29 
QuestionBifurcating data in the form of nodes tobe stored in Tree Control Pin
ANAND JOSHI17-Jul-06 3:23
ANAND JOSHI17-Jul-06 3:23 
AnswerRe: Bifurcating data in the form of nodes tobe stored in Tree Control Pin
led mike17-Jul-06 7:26
led mike17-Jul-06 7:26 
QuestionNeed Help with Custom ListCtrl [modified] Pin
Jethro6317-Jul-06 3:13
Jethro6317-Jul-06 3:13 
QuestionHow to find the used memory? Pin
bosfan17-Jul-06 3:00
bosfan17-Jul-06 3:00 
AnswerRe: How to find the used memory? Pin
earl17-Jul-06 4:48
earl17-Jul-06 4:48 
Sure, there are tools to find memory leaks.

First, though, consider that the memory count reported by windows will include both allocated memory (ie new or malloc'd memory) and memory held by the CRT. If you new enough memory and the CRT has to ask windows for more heap, it may hold on to it even after you delete / free it so it has enough for your (presumably also large) future requests.

If you are trying to debug memory leaks, try using Rational Purify, DevPartner Studio, or similar products. Be aware, though, that most of these start at $1000+ / seat, though they are more than worth the investment ITO dev time.

earl
QuestionReplacing my Menu with Default Menu of CFomView Pin
Uday Janaswamy17-Jul-06 2:30
Uday Janaswamy17-Jul-06 2:30 

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.