Advertisement

User defined msg & MFC

Started by December 18, 2000 10:32 PM
0 comments, last by Shannon Barber 24 years ago
How do you handle a WM_USER message in MFC? Magmai Kai Holmlor - The disgruntled & disillusioned
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara
  // inside the class declaration  afx_msg LRESULT OnMyMessage(WPARAM wParam, LPARAM lParam);  ...  #define WM_MYMESSAGE (WM_USER + 100)  BEGIN_MESSAGE_MAP(CMyWnd, CMyParentWndClass)     ON_MESSAGE(WM_MYMESSAGE, OnMyMessage)  END_MESSAGE_MAP()  LRESULT CMyWnd::OnMyMessage(WPARAM WParam, LPARAM LParam)  {     return (LRESULT)0;  }   


found it
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara

This topic is closed to new replies.

Advertisement