error C2440
“static_cast” 无法从“void (__thiscall CPppView )(void)”转换为“LRESULT (__thiscall CWnd )(WPARAM,LPARAM)”
不能转换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)”在匹配目标类型的范围内没有具有该名称的函数
解决方法如下:
例如:TransparentWnd.cpp中ON_MESSAGE(WM_LIBEN,OnLiben):
第一:把原来的消息函数返回值类型改为LRESULT(找到OnLiben定义,如Viod CTransparentWnd::OnLiben(WPARAM wParam,LPARAM lParam)改成LRESULT CTransparentWnd::OnLiben(WPARAM wParam,LPARAM lParam),声明处也要改,如afx_msg LRESULT OnLiben(WPARAM wParam,LPARAM lParam););
第二:函数内可以随便写个return TRUE;
第三:然后消息函数的参数必须改写成(WPARAM wParam,LPARAM lParam)而不论这两个参数是否用得到;
第四:消息映射如ON_MESSAGE(WM_message,& OnMyMessage
分享到:
相关推荐
错误信息"error C2440"指出,无法从`void (CMainFrame::*)()`转换为`LRESULT (CWnd::*)(WPARAM, LPARAM)`,这清晰地说明了问题所在。 解决这个问题的步骤如下: 1. **修改函数返回类型**:将`OnHotKey`函数的返回...
1. `cjpagerctrl.cpp(75):errorC2440:“static_cast”:无法从“BOOL(__thiscallCCJPagerCtrl::*)(NMPGSCROLL*,LRESULT*)”转换为“BOOL(__thiscallCCmdTarget::*)(NMHDR*,LRESULT*)”` 2. `cjpagerctrl.cpp(76):...
void CMyListCtrl::OnColumnClick(NMHDR* pNMHDR, LRESULT* pResult) { LPNMLISTVIEW pNMLV = reinterpret_cast(pNMHDR); int nColumn = pNMLV->iSubItem; // 获取点击的列索引 // 判断当前列是否已经按此列排序...
在MFC(Microsoft Foundation Classes)框架中,STATIC控件通常用于显示简单的文本或者图标,而它们默认不支持鼠标事件。然而,如果你希望在用户点击STATIC TEXT控件时触发某些行为,可以通过自定义控件和处理消息...
gh0st3.6\gh0st\cj60lib\cj60lib\cjpagerctrl.cpp(75): error C2440: “static_cast”: 无法从“BOOL(__thiscall CCJPagerCtrl::*)(NMPGSCROLL*, LRESULT*)”转换为“BOOL(__thiscall CCmdTarget::*)(NMHDR*, ...
WPARAM wParam = static_cast(控件的ID); LPARAM lParam = reinterpret_cast(新文本的指针); lResult = ::PostMessage(AfxGetMainWnd()->m_hWnd, WM_USER_UPDATE_CTRL, wParam, lParam); ``` 这里,`...
void CListDemoDlg::OnLvnBegindragListFolder(NMHDR *pNMHDR, LRESULT *pResult) { if(m_listFolder.GetListType()!=TYPE_PICNOTIP && m_listFolder.GetListType() != TYPE_PICTIP) return; static int i = 0...
void CHighlightListCtrlDlg::OnCustomdrawMyList(NMHDR* pNMHDR, LRESULT* pResult) { NMLVCUSTOMDRAW* pLVCD = reinterpret_cast*>(pNMHDR); *pResult = CDRF_DODEFAULT; if (CDDS_PREPAINT == pLVCD->nmcd....
LRESULT CALLBACK WndProc(HWND hWnd,UINT message, WPARAM wParam,LPARAM lParam); void DrawGame(void); void ShellDraw( HDC hdc ); void GameAreaDraw(HDC hdc); void OnTimer(UINT uTIMER_ID); void ...
return *static_cast*>(elem1) - *static_cast*>(elem2); } void SortArray(int* array, size_t count, int (CALLBACK*)(const void*, const void*)) { qsort(array, count, sizeof(int), CompareFunction); ...
static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction /////////////////////////////////////...
LRESULT CThreadCommunicationDlg::OnDisplayResult(WPARAM wParam,LPARAM lParam) { int nResult = (int)wParam; SetDlgItemInt(IDC_STATIC_RESULT,nResult,FALSE); return 0; } void ...
错误 C2440 在 `FMTITDLG.CPP` 文件第 36 行出现,具体内容为:“无法将 'LONG (__thiscall CTitleDialogBar::*)(UINT, UINT)' 转换为 'LRESULT (__thiscall CWnd::*)(WPARAM, LPARAM)'”。这表明在当前作用域内没有...
// 从磁盘上读取图像。 BOOL LoadBitmapsM(LPCTSTR normalImageFile, LPCTSTR downImageFile, LPCTSTR overImageFile=NULL, LPCTSTR disableImageFile=NULL ); void SetNormalImageM( VrImageCL& norImg ); ...
- 需要注意不同数据类型之间的转换,如强制类型转换(static_cast, reinterpret_cast, dynamic_cast, const_cast)以及类型安全的C++标准库函数(如std::numeric_limits, std::make_unsigned等)。 6. 内存管理和...
LRESULT CALLBACK WndProc(HWND, UINT , WPARAM , LPARAM ); BOOL Compare();//判定是否碰撞 BOOL TransBlock(int);//转换函数(包含变形,加速,左右移动。 void HandleTable();//得分时处理游戏区域 //定义24种方块
afx_msg void CMyDialog::OnTvnSelchangedTree1(NMHDR *pNMHDR, LRESULT *pResult) { NMTREEVIEW *pNMTreeView = reinterpret_cast*>(pNMHDR); HTREEITEM hItem = pNMTreeView->itemNew.hItem; // 获取并处理被...
在Microsoft Foundation Classes (MFC)库中,静态文本框(Static Text)是一种常见的用户界面元素,用于显示不可编辑的文本信息。MFC提供了一个类,名为`CStatic`,它是`CWnd`类的派生类,专门用来处理静态文本框。...
### C语言俄罗斯方块代码解析 #### 概述 本文档提供了一份用C语言编写的俄罗斯方块游戏的代码分析。这份代码展示了如何利用C语言的基础语法和Windows API来实现一个经典的俄罗斯方块游戏。 #### 核心概念与数据...