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 |
How can we create thread in MFC framework?
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
How we call a dialog in another dialog?
What are the advantages of using Doc/View or SDI over DialogBox
Why Array Index starts from Zero
Why not virtual functions to handle messages?
What is the difference between Synchronous sockets and asynchronous sockets?
What view class enables you to use an edit control as a view?
What is the base class for MFC Framework ?
Hi can anyone explain about the synchronization objects types and where we are using in the code.
Difference between Cclint DC & Cpaint Dc
How to handle command line arguements from simple MFC application ?