Click here to Skip to main content
15,900,818 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSurround Mixer Pin
lkm98514-Sep-06 5:18
lkm98514-Sep-06 5:18 
QuestionDynamic funtion calls from DLLs [modified] Pin
DanielRehn14-Sep-06 4:43
DanielRehn14-Sep-06 4:43 
AnswerRe: Dynamic funtion calls from DLLs Pin
ThatsAlok14-Sep-06 21:17
ThatsAlok14-Sep-06 21:17 
GeneralRe: Dynamic funtion calls from DLLs Pin
DanielRehn14-Sep-06 21:44
DanielRehn14-Sep-06 21:44 
Questionsubclassing Pin
Waldermort14-Sep-06 4:41
Waldermort14-Sep-06 4:41 
AnswerRe: subclassing Pin
Cedric Moonen14-Sep-06 4:46
Cedric Moonen14-Sep-06 4:46 
GeneralRe: subclassing Pin
Waldermort14-Sep-06 5:30
Waldermort14-Sep-06 5:30 
AnswerRe: subclassing Pin
Jun Du14-Sep-06 6:14
Jun Du14-Sep-06 6:14 
Hey, what Cedric said is called "polymorphism", which works only when you use pointers to reference objects. So this would call the overridden method:
YourBaseClass *p = new YourDerivedClass();
p->SomeFunction();

But this wouldn't:
YourBaseClass obj;
obj.SomeFunction();



Best,
Jun

AnswerRe: subclassing Pin
ThatsAlok14-Sep-06 21:18
ThatsAlok14-Sep-06 21:18 
AnswerRe: subclassing Pin
ThatsAlok14-Sep-06 21:34
ThatsAlok14-Sep-06 21:34 
QuestionConsole Input Saved To Text File !!!!!!! New To C++ Pin
Mark_Murphy14-Sep-06 3:42
Mark_Murphy14-Sep-06 3:42 
AnswerRe: Console Input Saved To Text File !!!!!!! New To C++ Pin
Zac Howland14-Sep-06 3:57
Zac Howland14-Sep-06 3:57 
GeneralRe: Console Input Saved To Text File !!!!!!! New To C++ Pin
Mark_Murphy14-Sep-06 4:10
Mark_Murphy14-Sep-06 4:10 
QuestionSmart Card Driver Version Pin
irit14-Sep-06 3:33
irit14-Sep-06 3:33 
QuestionHow to execute simple c++ file by microsoft visual studio 6 Pin
alpa shah14-Sep-06 3:12
alpa shah14-Sep-06 3:12 
QuestionRe: How to execute simple c++ file by microsoft visual studio 6 Pin
prasad_som14-Sep-06 3:19
prasad_som14-Sep-06 3:19 
AnswerRe: How to execute simple c++ file by microsoft visual studio 6 Pin
alpa shah14-Sep-06 3:23
alpa shah14-Sep-06 3:23 
AnswerRe: How to execute simple c++ file by microsoft visual studio 6 Pin
alpa shah14-Sep-06 3:27
alpa shah14-Sep-06 3:27 
GeneralRe: How to execute simple c++ file by microsoft visual studio 6 [modified] Pin
prasad_som14-Sep-06 3:41
prasad_som14-Sep-06 3:41 
AnswerRe: How to execute simple c++ file by microsoft visual studio 6 Pin
toxcct14-Sep-06 3:21
toxcct14-Sep-06 3:21 
AnswerRe: How to execute simple c++ file by microsoft visual studio 6 Pin
Mr.Brainley14-Sep-06 3:25
Mr.Brainley14-Sep-06 3:25 
GeneralRe: How to execute simple c++ file by microsoft visual studio 6 Pin
alpa shah14-Sep-06 3:29
alpa shah14-Sep-06 3:29 
GeneralRe: How to execute simple c++ file by microsoft visual studio 6 Pin
alpa shah14-Sep-06 3:32
alpa shah14-Sep-06 3:32 
GeneralRe: How to execute simple c++ file by microsoft visual studio 6 Pin
toxcct14-Sep-06 4:03
toxcct14-Sep-06 4:03 
AnswerRe: How to execute simple c++ file by microsoft visual studio 6 Pin
Hamid_RT15-Sep-06 7:07
Hamid_RT15-Sep-06 7:07 

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.