How to get View object from App class in MFC
-
Dear all, I writting an application using MFC in eVC 3.0. Now I need to access to the View object from the App class. Could you please tell me how. Thank you very much in advance. -Kien Bui
-
Dear all, I writting an application using MFC in eVC 3.0. Now I need to access to the View object from the App class. Could you please tell me how. Thank you very much in advance. -Kien Bui
The application object has a
m_pMainWnd
variable. This is a frame window that will contain the view. To retrieve it, search its children. Regards, João Paulo Figueira Embedded MVP -
The application object has a
m_pMainWnd
variable. This is a frame window that will contain the view. To retrieve it, search its children. Regards, João Paulo Figueira Embedded MVPThank you very much! -Kien Bui