error C2440: 'static_cast' : cannot convert from 'void (__thiscall CMainFrame::* )(void)' to ...

error C2440: 'static_cast' : cannot convert from 'void (__thiscall CMainFrame::* 

)(void)' to 'LRESULT (__thiscall CWnd::* )(WPARAM,LPARAM)'  的错误解决办法

开发平台由VC6.0升级至VS2005及以上版本时,需要将原有的项目迁移,可能碰到类似错误:

error C2440: 'static_cast' : cannot convert from 'void (__thiscall CMainFrame::* )(void)' to 'LRESULT (__thiscall CWnd::* )(WPARAM,LPARAM)'  

VS2005及以上版本对消息的检查更为严格,以前在VC6下完全正常运行的消息映射在VS2005下编译不通过!

ON_MESSAGE(WM_message,OnMyMessage);

 OnMyMessage返回值必须为LRESULT,其形式为:afx_msg LRESULT OnMyMessage(WPARAM, LPARAM);如果不符合,则有错误提示:

error C2440: “static_cast”: 无法从“void (__thiscall CPppView::* )(WPARAM,LPARAM)”转换为“LRESULT (__thiscall CWnd::* )(WPARAM,LPARAM)”

在匹配目标类型的范围内没有具有该名称的函数

error C2440: “static_cast”: 无法从“void (__thiscall CPppView::* )(void)”转换为“LRESULT (__thiscall CWnd::* )(WPARAM,LPARAM)”

在匹配目标类型的范围内没有具有该名称的函数

解决方法如下:

首先,把原来的消息函数返回值类型改为LRESULT,函数内可以随便写个return TRUE; 然后消息函数的参数必须改写成(WPARAM wParam,LPARAM lParam)而不论这两个参数是否用得到;最后,消息映射如ON_MESSAGE(WM_message,& OnMyMessage)

解决方法:

afx_msg UINT OnNcHitTest(CPoint point);     

UINT   CTestDlg::OnNcHitTest(CPoint point)     
=>    

afx_msg LRESULT OnNcHitTest(CPoint point) 

LRESULT CTestDlg::OnNcHitTest(CPoint point)

猜你喜欢

转载自blog.csdn.net/liubing8609/article/details/80830071
今日推荐