Click here to Skip to main content
16,005,149 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralNetAPI32 Pin
Richard Hudson27-Jan-05 6:04
Richard Hudson27-Jan-05 6:04 
GeneralRe: NetAPI32 Pin
David Crow27-Jan-05 10:49
David Crow27-Jan-05 10:49 
QuestionCan someone explain this please Pin
Tom Wright27-Jan-05 5:22
Tom Wright27-Jan-05 5:22 
AnswerRe: Can someone explain this please Pin
David Crow27-Jan-05 5:25
David Crow27-Jan-05 5:25 
GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 5:34
Tom Wright27-Jan-05 5:34 
GeneralRe: Can someone explain this please Pin
Chris Losinger27-Jan-05 5:38
professionalChris Losinger27-Jan-05 5:38 
GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 5:44
Tom Wright27-Jan-05 5:44 
GeneralRe: Can someone explain this please Pin
Chris Losinger27-Jan-05 5:51
professionalChris Losinger27-Jan-05 5:51 
Tom Wright wrote:
I need to access a function that is in another class that I have I can "cast" it like this?

you can only safely cast a pointer like this if the To and From class are realted to each other (ie. if the To class is derived from the From class, or vice versa).


Tom Wright wrote:
And in my first example can I cast a pointer to me class in the void OnClose function?

you can't cast a class pointer to something that isn't a class. if you need pointers to your class in a function that isn't a member of your class, you'll need to pass a pointer to an object of your class into that function (or maybe make it available as a global variable):

void CMyClass::someFunc()
{
 NonMemberFunc(this);
}

void NonMemberFunc(CMyClass *pMyClassPtr)
{
   pMyClassPtr->someFunc();
}



Image Toolkits | Image Processing | Cleek

GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 10:48
Tom Wright27-Jan-05 10:48 
GeneralRe: Can someone explain this please Pin
Chris Losinger27-Jan-05 10:55
professionalChris Losinger27-Jan-05 10:55 
GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 11:09
Tom Wright27-Jan-05 11:09 
GeneralRe: Can someone explain this please Pin
Chris Losinger27-Jan-05 12:07
professionalChris Losinger27-Jan-05 12:07 
GeneralRe: Can someone explain this please Pin
David Crow27-Jan-05 5:42
David Crow27-Jan-05 5:42 
GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 5:49
Tom Wright27-Jan-05 5:49 
GeneralRe: Can someone explain this please Pin
David Crow27-Jan-05 5:53
David Crow27-Jan-05 5:53 
GeneralRe: Can someone explain this please Pin
Tom Wright27-Jan-05 10:26
Tom Wright27-Jan-05 10:26 
GeneralDocument order Pin
vineas27-Jan-05 4:33
vineas27-Jan-05 4:33 
GeneralRe: Document order Pin
Neville Franks27-Jan-05 5:57
Neville Franks27-Jan-05 5:57 
GeneralRe: Document order Pin
vineas27-Jan-05 6:31
vineas27-Jan-05 6:31 
Generalmodulus error result Pin
mytz27-Jan-05 3:05
mytz27-Jan-05 3:05 
GeneralRe: modulus error result Pin
Chris Losinger27-Jan-05 3:16
professionalChris Losinger27-Jan-05 3:16 
GeneralRe: modulus error result Pin
Antony M Kancidrowski27-Jan-05 3:17
Antony M Kancidrowski27-Jan-05 3:17 
GeneralRe: modulus error result Pin
Maximilien27-Jan-05 3:17
Maximilien27-Jan-05 3:17 
Generalmodulus prob Pin
mytz27-Jan-05 3:00
mytz27-Jan-05 3:00 
GeneralRe: modulus prob Pin
Chris Losinger27-Jan-05 3:05
professionalChris Losinger27-Jan-05 3:05 

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.