Click here to Skip to main content
15,910,872 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Simple Noob Question: Problem with "CONTROL PARENT" setting in tabbed dialog Pin
B_U_A12-Mar-09 22:32
B_U_A12-Mar-09 22:32 
GeneralRe: Simple Noob Question: Problem with "CONTROL PARENT" setting in tabbed dialog Pin
Nishad S13-Mar-09 1:59
Nishad S13-Mar-09 1:59 
Questioncreating toolbar for IE Pin
Ash_VCPP5-Mar-09 22:08
Ash_VCPP5-Mar-09 22:08 
AnswerRe: creating toolbar for IE Pin
SandipG 5-Mar-09 22:16
SandipG 5-Mar-09 22:16 
GeneralRe: creating toolbar for IE Pin
Ash_VCPP5-Mar-09 22:19
Ash_VCPP5-Mar-09 22:19 
AnswerRe: creating toolbar for IE Pin
Hamid_RT6-Mar-09 0:25
Hamid_RT6-Mar-09 0:25 
Questionwhat is "commit storage" any way? Pin
JackPuppy5-Mar-09 21:09
JackPuppy5-Mar-09 21:09 
AnswerRe: what is "commit storage" any way? Pin
Eytukan5-Mar-09 22:39
Eytukan5-Mar-09 22:39 
Committed means the memory that is ready for use. It's at the disposal.

JackPuppy wrote:
When a page in the file image is accessed, the system loads the appropriate page. If that page is never modified, it can be discarded from memory and reloaded when necessary.


You should know about Paging to understand these terminologies. That's Bascically about maintaining virtual memory. To trick your process to believe it's got 2GB of address at it's disposal. You might have heard every process in windows is allocated a virtual memory of 2GB for userspace. But they are "virtual". Even you have just 512 KB of virtual memory, your process can use upto 2GB - because of memory gets mapped to virtual memory. Here the chunks of memory are termed as "pages". In the quoted text, what it means is that, until a specific page from your application is not required, it's not loaded into memory. And the pages that the OS predicts to be required would be kept in the page file (VM). If the application searches for a page that is not found the the physical memory(RAM), it searches the page files table & loads the required page. And if the phyiscal memory is full, it does a swapping based on some page replacement algorithms. Ok enough of the story, Search for "Paging" &"virtual memory". May be you can add "win32" if are specific about the OS implementation. byebye.Thumbs Up | :thumbsup:

He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus

GeneralRe: what is "commit storage" any way? Pin
JackPuppy5-Mar-09 23:22
JackPuppy5-Mar-09 23:22 
QuestionResizing CListCtrl Pin
grassrootkit5-Mar-09 20:49
grassrootkit5-Mar-09 20:49 
AnswerRe: Resizing CListCtrl Pin
SandipG 5-Mar-09 21:04
SandipG 5-Mar-09 21:04 
GeneralRe: Resizing CListCtrl Pin
grassrootkit5-Mar-09 21:54
grassrootkit5-Mar-09 21:54 
GeneralRe: Resizing CListCtrl Pin
Code-o-mat5-Mar-09 22:47
Code-o-mat5-Mar-09 22:47 
GeneralRe: Resizing CListCtrl Pin
SandipG 5-Mar-09 23:05
SandipG 5-Mar-09 23:05 
GeneralRe: Resizing CListCtrl Pin
Code-o-mat5-Mar-09 23:10
Code-o-mat5-Mar-09 23:10 
QuestionProblem with a CFont class Pin
prithaa5-Mar-09 20:48
prithaa5-Mar-09 20:48 
AnswerRe: Problem with a CFont class Pin
Cedric Moonen5-Mar-09 21:07
Cedric Moonen5-Mar-09 21:07 
GeneralRe: Problem with a CFont class Pin
prithaa5-Mar-09 22:03
prithaa5-Mar-09 22:03 
QuestionHow to make an HttpRequest for a file which is on the server from client... Pin
siva4555-Mar-09 20:35
siva4555-Mar-09 20:35 
AnswerRe: How to make an HttpRequest for a file which is on the server from client... Pin
Swapnil Shah5-Mar-09 20:48
Swapnil Shah5-Mar-09 20:48 
GeneralRe: How to make an HttpRequest for a file which is on the server from client... Pin
siva4556-Mar-09 0:31
siva4556-Mar-09 0:31 
GeneralRe: How to make an HttpRequest for a file which is on the server from client... Pin
Swapnil Shah6-Mar-09 2:03
Swapnil Shah6-Mar-09 2:03 
GeneralRe: How to make an HttpRequest for a file which is on the server from client... Pin
siva4556-Mar-09 18:54
siva4556-Mar-09 18:54 
AnswerRe: How to make an HttpRequest for a file which is on the server from client... Pin
David Crow6-Mar-09 3:26
David Crow6-Mar-09 3:26 
QuestionHow to make a color to checkbox and radion button. Pin
tgm.arjun095-Mar-09 20:28
tgm.arjun095-Mar-09 20:28 

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.