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 |
why constructor cannt be declar virtually? why destructor cannt be overloaded?
Write a program to sort the number with different sorts in one program ??
What does and I oop and sksksk mean?
What is class in oop with example?
What is polymorphism used for?
What are two types of polymorphism?
Why do we use class in oops?
What is the significance of classes in oop?
What polymorphism means?
What's the full form of STL?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
why the memory allocated with new cant be freed using free()