MFC编程,listbox控件怎么读取指定行的内容? 我用GetLBText(),报错GetLBText不是CListBox控件成员函数

2025-01-05 01:58:50
推荐回答(5个)
回答1:

直接用GetText(nSel,str)就行了,nSel是你要读取的位置,读取的值会赋给str

回答2:

用ListBox_GetText(list,curdbl,str);
括号中:
list是定义的ListBox句柄;
curdbl是ListBox中的项目序号;
str值将赋予的给它;

回答3:

CListBox::GetText

回答4:

GetLBText 是在 CComboBox里面用的

CListBox是用 GetText

回答5:

强制转换指针了没有?