What is the use of CCmdTarget ?
Answers were Sorted based on User's Feedback
CCmdTraget has the implementation of the Message map.
Message map routes the commands & messages to the member
functions you write to handle them. Key frame work classes
derived from the CCmdtarget includes CWnd, Cview etc..
If you need new user class handel the messages, derive the
class from any of the class which are derived from
CCmdTarget.
| Is This Answer Correct ? | 20 Yes | 5 No |
Answer / abhijit
* It is the base class for MFC's message map architecture
* Message map functionality is given through its virtual
member function OnCmdMsg
*** Owing to the way message map architecture is
implemented there is no provision for multiple inheritance
in MFC (1 window can not have two parents ... if the
derived class cant handle a message... and both parents
can... which parent should handle!!!)
| Is This Answer Correct ? | 12 Yes | 4 No |
Answer / rock
CCmdTarget is used for message handling purpose and it also
handels defwindowproc()
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / meenakshi sundaram
CCmdTarget is the base class for doing automation in MFC
based COM class.
| Is This Answer Correct ? | 4 Yes | 10 No |
Explain Doc/View architecture
How do you change the properties for a tree view control that is part of the CTreeView class?
If application hangs while SendMessage is waiting for the result, how you handle it?
Why not virtual functions to handle messages?
In VC++ How to transfer between one exe to another exe while running..
If there is more than 100 control in a window how we can change the Taborder of a controls
What is the base class for MFC Framework ?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
List out the basic features of MFC.
How to convert a CString variable to char* or LPTSTR?
How to find the mouse entering an image?..while entering need to display next image...
what is the meaning of constant FILE EXCEEDS LENGTH LIMIT while loading from ps file to vsam in the jcl?