What is the command routing in MFC framework?
Answers were Sorted based on User's Feedback
Answer / jianhua wang
For SDI application:
CView->CDocument->CFrameWnd->CWinApp;
For MDI application:
CView->CDocument->CMDIChildWnd->CMDIFrameWnd->CWinApp;
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer / krish
In SDI Application
CFRAMEWND=>CVIEW=>CDOCUMENT=>CWINAPP
In MDI Application
CFRAMEWND=>CMDICHILDWND=>CVIEW=>CDOCUMENT=>CWINAPP
| Is This Answer Correct ? | 5 Yes | 0 No |
What is the difference between the SDI and MDI
If there is more than 100 control in a window how we can change the Taborder of a controls
Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?
What is a message map?
What is the base class for most MFC classes?
How we can findout Memoryleaks, In what way it can be avoided
what is the use of CWinApp class?
How WM_PAINT message gets called in MFC,please explain it . a)Who calls the WM_PAINT message? b)When it gets called? c)how it comes to message queue? Please Explain it
What is the base class for MFC
What are the special requirements for dialog box resources used in a form view?
What is document-view architecture ? Give me one real time example for SDI ?
What is Multithreading