添加一個新消息:
const UINT wm_Find = RegisterWindowMessage(FINDMSGSTRING);
然後添加函數定義和宏映射
afx_msg long OnFind(WPARAM wParam,LPARAM lParam);
ON_REGISTERED_MESSAGE(wm_Find, OnFind)
編譯時出現下面的錯誤:
error C2440: 'type cast' : cannot convert from 'long (__cdecl )(unsigned int,long)' to 'long (__thiscall CWnd::)(unsigned int,long)'
請問是怎麼回事,這段代碼我是根據MSDN改編過來的
onfind不是你的成員函數。