Click here to Skip to main content
15,891,431 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: can any body tell me how to make a invisble textbox visible in vc++ Pin
Deepu Antony26-Oct-07 22:10
Deepu Antony26-Oct-07 22:10 
GeneralRe: can any body tell me how to make a invisble textbox visible in vc++ Pin
saravana00127-Oct-07 4:46
saravana00127-Oct-07 4:46 
AnswerRe: can any body tell me how to make a invisble textbox visible in vc++ Pin
Nelek28-Oct-07 23:28
protectorNelek28-Oct-07 23:28 
Questionassembly in x64 Pin
zon_cpp26-Oct-07 21:29
zon_cpp26-Oct-07 21:29 
AnswerRe: assembly in x64 Pin
Nemanja Trifunovic27-Oct-07 9:38
Nemanja Trifunovic27-Oct-07 9:38 
QuestionResource handle Pin
Vinod CS26-Oct-07 21:04
Vinod CS26-Oct-07 21:04 
AnswerRe: Resource handle Pin
Paresh Chitte28-Oct-07 19:24
Paresh Chitte28-Oct-07 19:24 
QuestionAccesing operator from parent class Pin
Fernando A. Gomez F.26-Oct-07 18:03
Fernando A. Gomez F.26-Oct-07 18:03 
So let's say that I have something like:

class A
{
    public: virtual void foo() {...}
};

class B : public A
{
    public: virtual void foo() { A::foo(); ... }
};


In the overwritten method foo, I used the sentence A::foo in order to call the parent's version of this method. Now, let's say that rather than overwritting a method, I want to overwrite an operator overload. How would I call the parent's version? I mean:

class A
{
    public: A& operator= (const A& a) { ... }
};

class B : public A
{
    public: B& operator= (const B& b) { 
        // how do I do this? something like:
        // A::operator=(b);
        // ???
        ...
        }
};


Is it even possible?

Thanks in advance.




Hope is the negation of reality - Raistlin Majere

AnswerRe: Accesing operator from parent class [modified] Pin
Hamed Musavi27-Oct-07 0:05
Hamed Musavi27-Oct-07 0:05 
GeneralRe: Accesing operator from parent class Pin
Fernando A. Gomez F.27-Oct-07 13:28
Fernando A. Gomez F.27-Oct-07 13:28 
GeneralRe: Accesing operator from parent class Pin
Hamed Musavi27-Oct-07 20:34
Hamed Musavi27-Oct-07 20:34 
GeneralRe: Accesing operator from parent class Pin
Fernando A. Gomez F.27-Oct-07 22:08
Fernando A. Gomez F.27-Oct-07 22:08 
GeneralRe: Accesing operator from parent class Pin
Hamed Musavi28-Oct-07 3:16
Hamed Musavi28-Oct-07 3:16 
Questionhow to get Domain Role Pin
HOW WHAT26-Oct-07 14:33
HOW WHAT26-Oct-07 14:33 
AnswerRe: how to get Domain Role Pin
David Crow29-Oct-07 4:20
David Crow29-Oct-07 4:20 
QuestionCAsyncSocket and Message Pump Pin
Don Rolando26-Oct-07 10:30
Don Rolando26-Oct-07 10:30 
AnswerRe: CAsyncSocket and Message Pump Pin
Mark Salsbery26-Oct-07 12:10
Mark Salsbery26-Oct-07 12:10 
GeneralRe: CAsyncSocket and Message Pump Pin
Don Rolando26-Oct-07 20:20
Don Rolando26-Oct-07 20:20 
GeneralRe: CAsyncSocket and Message Pump [modified] Pin
Don Rolando26-Oct-07 21:51
Don Rolando26-Oct-07 21:51 
GeneralRe: CAsyncSocket and Message Pump Pin
Mark Salsbery27-Oct-07 6:57
Mark Salsbery27-Oct-07 6:57 
GeneralRe: CAsyncSocket and Message Pump Pin
Moak8-Nov-07 12:03
Moak8-Nov-07 12:03 
GeneralRe: CAsyncSocket and Message Pump Pin
Blake Miller20-Nov-07 6:53
Blake Miller20-Nov-07 6:53 
QuestionCHtmlView - how to get session Pin
m1m226-Oct-07 8:49
m1m226-Oct-07 8:49 
QuestionProgram terminates Pin
pourang26-Oct-07 8:28
pourang26-Oct-07 8:28 
AnswerRe: Program terminates [modified] Pin
Chris Losinger26-Oct-07 8:31
professionalChris Losinger26-Oct-07 8:31 

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.