注册 登录
编程论坛 VC++/MFC

mfc中如何选中一整行

菲若 发布于 2018-10-15 20:38, 1725 次点击
这是我用的其中一段代码 可是一直报错
void CSy4Dlg::OnButtonChange()
{
POSITION pos;
pos=m_ListCtrl.SetExtendedStyle(m_ListCtrl.GetExtendedStyle()|LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES );






错误:C:\Users\Lenovo\Desktop\新建文件夹\sy 4\sy 4Dlg.cpp(196) : error C2440: '=' : cannot convert from 'unsigned long' to 'struct __POSITION *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
执行 cl.exe 时出错.

sy 4.exe - 1 error(s), 0 warning(s)
1 回复
#2
yuccn2018-10-22 22:39
cannot convert from 'unsigned long' to 'struct __POSITION *'

错误说得很明显了,你查查ListCtrl 的SetExtendedStyle 函数用法
1