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 |
What is the difference between the ASSERT and VERIFY macros?
what is message Testing ?
I can i set size of integer variable should be fixed for different operating systems(Ex i want integer size is 2bytes in OS)
Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?
1)How to change the size of a button at run time ?
how does conditionally close the Dialog Box ?
Do you have an idea about MFC?
1)How to load an icon on a button as Dynamically ?
what if we provide two message handler for same message ?
1)To Remove WS_MINIMIZEBOX in a Frame ?
How to handle command line arguements from simple MFC application ?
how u can move CDC pointer to one line in cview?