ListBox获取行字符串

ListBox获取行字符串

关键点

获取ListBox第1行的字符串

获取ListBox第2行的字符串

获取ListBox第n行的字符串

CListBox::GetText

int GetText( int nIndex, LPTSTR lpszBuffer ) const;
void GetText( int nIndex, CString& rString ) const;

实现过程

CString s;
m_list1.GetText(0,s);

MessageBox(s);

备注

相关链接

 
上一篇:c语言贪吃蛇


下一篇:【笔记】虚拟机用Xshell登陆报错“ssh服务器拒绝了密码”解决方法