Click here to Skip to main content
15,915,501 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: multiple windows in MFC C++ Pin
alex.barylski2-Feb-02 13:19
alex.barylski2-Feb-02 13:19 
QuestionUsing CMsFlexGrid on other machines (without visual c++ installed)? Pin
DanYELL2-Feb-02 9:15
DanYELL2-Feb-02 9:15 
AnswerRe: Using CMsFlexGrid on other machines (without visual c++ installed)? Pin
Mazdak2-Feb-02 10:36
Mazdak2-Feb-02 10:36 
AnswerRe: Using CMsFlexGrid on other machines (without visual c++ installed)? Pin
Mazdak2-Feb-02 10:44
Mazdak2-Feb-02 10:44 
GeneralCalendar Week Problem Pin
Sonu Kapoor2-Feb-02 8:51
Sonu Kapoor2-Feb-02 8:51 
GeneralRe: Calendar Week Problem Pin
wangyiming3-Feb-02 21:51
wangyiming3-Feb-02 21:51 
QuestionHow to use point to member function? Pin
Feng Qin2-Feb-02 7:27
Feng Qin2-Feb-02 7:27 
AnswerRe: How to use point to member function? Pin
Michael Dunn2-Feb-02 7:40
sitebuilderMichael Dunn2-Feb-02 7:40 
class a { void func() {} };
 
int foo()
{
void (a::*pFunc)();  // pFunc is a pointer to a method in class a
a ao;
  
  pFunc = a::func;  // assign pFunc to point at the func method
  ao.*pFunc();      // call a::func() using ao as 'this'
}



--Mike--
"Everyone has figured out what 'service pack' really means, so they had to go and change the language. Perhaps this is what Bill was talking about in the 'security is top priority' letter."
  -- Daniel Ferguson, 1/31/2002
My really out-of-date homepage
Sonork - 100.10414 AcidHelm
Big fan of Alyson Hannigan.

GeneralRe: How to use point to member function? Pin
Feng Qin2-Feb-02 18:08
Feng Qin2-Feb-02 18:08 
GeneralRe: How to use point to member function? Pin
Feng Qin2-Feb-02 19:23
Feng Qin2-Feb-02 19:23 
GeneralC in Visual C++ Pin
aleyah2-Feb-02 6:49
aleyah2-Feb-02 6:49 
GeneralRe: C in Visual C++ Pin
2-Feb-02 6:51
suss2-Feb-02 6:51 
Generalvery frustrating dialog error Pin
2-Feb-02 6:10
suss2-Feb-02 6:10 
GeneralRe: very frustrating dialog error Pin
2-Feb-02 12:05
suss2-Feb-02 12:05 
GeneralRe: very frustrating dialog error Pin
2-Feb-02 21:07
suss2-Feb-02 21:07 
GeneralRe: very frustrating dialog error Pin
3-Feb-02 5:44
suss3-Feb-02 5:44 
GeneralRe: very frustrating dialog error Pin
3-Feb-02 6:10
suss3-Feb-02 6:10 
GeneralMFC is Challenging :: C++ Pin
valikac2-Feb-02 5:59
valikac2-Feb-02 5:59 
GeneralRe: MFC is Challenging :: C++ Pin
Matt Gullett2-Feb-02 6:13
Matt Gullett2-Feb-02 6:13 
GeneralRe: MFC is Challenging :: C++ Pin
Jon Sagara2-Feb-02 8:35
Jon Sagara2-Feb-02 8:35 
GeneralRe: MFC is Challenging :: C++ Pin
alex.barylski2-Feb-02 13:34
alex.barylski2-Feb-02 13:34 
GeneralRe: MFC is Challenging :: C++ Pin
Shog92-Feb-02 15:11
sitebuilderShog92-Feb-02 15:11 
GeneralRe: MFC is Challenging :: C++ Pin
Paul M Watt2-Feb-02 15:21
mentorPaul M Watt2-Feb-02 15:21 
GeneralRe: MFC is Challenging :: C++ Pin
valikac3-Feb-02 6:40
valikac3-Feb-02 6:40 
GeneralRe: MFC is Challenging :: C++ Pin
valikac4-Feb-02 4:45
valikac4-Feb-02 4:45 

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.