What is a message map?
Answer / midhun kallayil madhavan
Message map is dynamic function locater
It can look each function if it defined
e.g
void OnWndMessage(UINT message, WPARAM wParam, LPARAM
lParam, LRESULT *pResult)
{
// function looking MESSAGE_MAPS ((DECLARED))
// if found, CWnd::OnSize(UINT nStyle, int cx, int cy);
__thisclass.OnSize(wParam, HIWORD(lParam), LOWORD(lParam);
}
//MIDHUN KALLAYIL MADHAVAN infomidhun@gmail.com
| Is This Answer Correct ? | 6 Yes | 3 No |
If there is more than 100 control in a window how we can change the Taborder of a controls
1) How do you Destroy a Dialog Box ?
How to handle command line arguements from simple MFC application ?
What is LoadLibrary function returns?
What is the base class for MFC Framework ?
What is the difference between the SDI and MDI
how can u change button shape at run time
Why not virtual functions to handle messages?
How can i implement the dynamic menus in MFC plz give the code
what is the difference between SDI and MDI
15 Answers CMC, HCL, Siemens,
What function is called by a document class to notify views that the document has been changed?
Why Array Index starts from Zero