What is command routing in MFC



What is command routing in MFC..

Answer / bob

Check the Command pattern in Gof books, MFC almost use it in
the same way:
SubWidget in the dialog will catch it firstly, it will
forward it to Parent window(the dialog) if *request is not
for it or no handler defined.

This procedure runs recursively, until one handle it or pass
it to application object. Application will omit unknown
command by default

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More OOPS Interview Questions

what is virtual function in c++

6 Answers  


Do you know about multiple inheritance?

1 Answers   Motorola,


What is overriding in oop?

0 Answers  


What is the difference between pass by reference and pass by value?

12 Answers   Pfizer, TCS,


what is the use of mutable key word

3 Answers   HCL,






what is the basic concept of inheritance?

9 Answers  


what is difference between objects and function

1 Answers  


why freind function takes more parameter than normal member function in c++?

1 Answers   IBM,


Can we create object of interface?

0 Answers  


What is abstraction oop?

0 Answers  


how to find the largest of given numbers in an array

2 Answers  


Which is the only operator in C++ which can be overloaded but NOT inherited?

8 Answers  


Categories