Click here to Skip to main content
15,887,027 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Code consuming lot of RAM (Memory) Pin
User 1350945019-Dec-17 2:02
professionalUser 1350945019-Dec-17 2:02 
QuestionRe: Code consuming lot of RAM (Memory) Pin
Jochen Arndt19-Dec-17 0:57
professionalJochen Arndt19-Dec-17 0:57 
AnswerRe: Code consuming lot of RAM (Memory) Pin
User 1350945019-Dec-17 2:01
professionalUser 1350945019-Dec-17 2:01 
GeneralRe: Code consuming lot of RAM (Memory) Pin
Jochen Arndt19-Dec-17 2:35
professionalJochen Arndt19-Dec-17 2:35 
AnswerRe: Code consuming lot of RAM (Memory) Pin
Jochen Arndt19-Dec-17 2:59
professionalJochen Arndt19-Dec-17 2:59 
QuestionRe: Code consuming lot of RAM (Memory) Pin
David Crow19-Dec-17 4:12
David Crow19-Dec-17 4:12 
AnswerRe: Code consuming lot of RAM (Memory) Pin
User 1350945019-Dec-17 5:14
professionalUser 1350945019-Dec-17 5:14 
AnswerRe: Code consuming lot of RAM (Memory) Pin
David Crow19-Dec-17 5:28
David Crow19-Dec-17 5:28 
If that's anything like Task Manager in Windows, you should not be using it as a "how much RAM is my program using" gauge. Task Manager is showing you the address space that is in use, which has little (to nothing) to do with the amount of that address space your program is actually using. The "memory" numbers are all but completely useless for telling how much of your memory is actually in use. Think of it more as a high-water mark. While you may have made an allocation at one point in time, freeing the blocks does not guarantee the address space numbers will go down. Those blocks are on the free list, still in the address space, but they are available for subsequent allocation.

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles


AnswerRe: Code consuming lot of RAM (Memory) Pin
User 1350945019-Dec-17 10:03
professionalUser 1350945019-Dec-17 10:03 
AnswerRe: Code consuming lot of RAM (Memory) Pin
KarstenK20-Dec-17 6:47
mveKarstenK20-Dec-17 6:47 
QuestionGet Supported File System Pin
john563218-Dec-17 22:48
john563218-Dec-17 22:48 
AnswerRe: Get Supported File System Pin
Jochen Arndt18-Dec-17 23:03
professionalJochen Arndt18-Dec-17 23:03 
GeneralRe: Get Supported File System Pin
john563218-Dec-17 23:14
john563218-Dec-17 23:14 
GeneralRe: Get Supported File System Pin
Jochen Arndt18-Dec-17 23:53
professionalJochen Arndt18-Dec-17 23:53 
QuestionSearching string not working Pin
Anonygeeker18-Dec-17 22:10
Anonygeeker18-Dec-17 22:10 
AnswerRe: Searching string not working Pin
Richard MacCutchan18-Dec-17 22:40
mveRichard MacCutchan18-Dec-17 22:40 
GeneralRe: Searching string not working Pin
Jochen Arndt18-Dec-17 22:57
professionalJochen Arndt18-Dec-17 22:57 
GeneralRe: Searching string not working Pin
Richard MacCutchan19-Dec-17 2:42
mveRichard MacCutchan19-Dec-17 2:42 
GeneralRe: Searching string not working Pin
Anonygeeker18-Dec-17 23:10
Anonygeeker18-Dec-17 23:10 
AnswerRe: Searching string not working Pin
CPallini18-Dec-17 23:26
mveCPallini18-Dec-17 23:26 
QuestionIn MFC how to achieve multilevel undo/redo operations for CRichEditCtrl? Pin
steffi12317-Dec-17 19:13
steffi12317-Dec-17 19:13 
AnswerRe: In MFC how to achieve multilevel undo/redo operations for CRichEditCtrl? Pin
Victor Nijegorodov17-Dec-17 21:03
Victor Nijegorodov17-Dec-17 21:03 
AnswerRe: In MFC how to achieve multilevel undo/redo operations for CRichEditCtrl? Pin
_Flaviu17-Dec-17 22:13
_Flaviu17-Dec-17 22:13 
QuestionHow to insert char* to char array - WITHOUT using string Pin
Vaclav_16-Dec-17 4:52
Vaclav_16-Dec-17 4:52 
GeneralRe: How to insert char* to char array - WITHOUT using string Pin
PIEBALDconsult16-Dec-17 4:57
mvePIEBALDconsult16-Dec-17 4:57 

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.