Click here to Skip to main content
15,911,646 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Display message box at the time locking the system Pin
Mohan Ramachandra9-Mar-10 18:45
Mohan Ramachandra9-Mar-10 18:45 
GeneralRe: Display message box at the time locking the system Pin
NiceNaidu9-Mar-10 18:57
NiceNaidu9-Mar-10 18:57 
GeneralRe: Display message box at the time locking the system Pin
Rajesh R Subramanian9-Mar-10 19:28
professionalRajesh R Subramanian9-Mar-10 19:28 
GeneralRe: Display message box at the time locking the system Pin
NiceNaidu9-Mar-10 23:52
NiceNaidu9-Mar-10 23:52 
QuestionDoubt in using NULL pointer Pin
KASR19-Mar-10 18:13
KASR19-Mar-10 18:13 
AnswerRe: Doubt in using NULL pointer Pin
Tim Craig9-Mar-10 18:34
Tim Craig9-Mar-10 18:34 
GeneralRe: Doubt in using NULL pointer Pin
KASR19-Mar-10 18:38
KASR19-Mar-10 18:38 
AnswerRe: Doubt in using NULL pointer Pin
Cool_Dev9-Mar-10 18:36
Cool_Dev9-Mar-10 18:36 
CAdd *pObj = NULL;
pObj->Display();

Call will be succeeded as long as none of the member variables of CAdd is referred in Display(). When pgm loads, a class will be having only one copy of all its member functions for all class variables we create, but will be having its own copy of member variables for each class variables. So members variables will be allocated only when an instance of class is created but there will be already a copy of all member functions even if no instance of class is created. Hope you understood how the calls to Display is succeeded above.
GeneralRe: Doubt in using NULL pointer Pin
KASR19-Mar-10 18:44
KASR19-Mar-10 18:44 
GeneralRe: Doubt in using NULL pointer Pin
Cool_Dev9-Mar-10 19:02
Cool_Dev9-Mar-10 19:02 
GeneralRe: Doubt in using NULL pointer Pin
Tim Craig9-Mar-10 21:54
Tim Craig9-Mar-10 21:54 
GeneralRe: Doubt in using NULL pointer Pin
KingsGambit9-Mar-10 19:33
KingsGambit9-Mar-10 19:33 
GeneralRe: Doubt in using NULL pointer Pin
CPallini9-Mar-10 20:45
mveCPallini9-Mar-10 20:45 
Questionhow to don't allow interruptions in a piece of code in VC++ Pin
timbk9-Mar-10 15:38
timbk9-Mar-10 15:38 
AnswerRe: how to don't allow interruptions in a piece of code in VC++ Pin
Luc Pattyn9-Mar-10 16:11
sitebuilderLuc Pattyn9-Mar-10 16:11 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
timbk9-Mar-10 16:48
timbk9-Mar-10 16:48 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
Luc Pattyn9-Mar-10 16:52
sitebuilderLuc Pattyn9-Mar-10 16:52 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
timbk9-Mar-10 16:57
timbk9-Mar-10 16:57 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
Luc Pattyn9-Mar-10 16:59
sitebuilderLuc Pattyn9-Mar-10 16:59 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
timbk9-Mar-10 17:13
timbk9-Mar-10 17:13 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
Luc Pattyn9-Mar-10 17:18
sitebuilderLuc Pattyn9-Mar-10 17:18 
GeneralRe: how to don't allow interruptions in a piece of code in VC++ Pin
Luc Pattyn9-Mar-10 17:20
sitebuilderLuc Pattyn9-Mar-10 17:20 
AnswerRe: how to don't allow interruptions in a piece of code in VC++ Pin
Stuart Dootson9-Mar-10 21:03
professionalStuart Dootson9-Mar-10 21:03 
QuestionNumber of line in a Rect of Rich edit Pin
ForNow9-Mar-10 15:35
ForNow9-Mar-10 15:35 
AnswerRe: Number of line in a Rect of Rich edit Pin
Luc Pattyn9-Mar-10 17:04
sitebuilderLuc Pattyn9-Mar-10 17:04 

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.