1. 取列表中当前选中的值(主要涉及到CString到LPTSTR类型的转换)
方法一:
int iSel=m_list.GetCurSel(); CString tip; int len; len=m_list.GetTextLen(iSel); m_list.GetText(iSel, tip.GetBuffer(len)); AfxMessageBox(str);
CListBox::GetCurSel() 方法取列表中当前被选中的项,并将行数(项数)返回;
CListBox::GetTextLen(int row) 方法获取当前行的值的长度;
CString::GetBuffer() 方法 为一个CString对象重新获取其内部字符缓冲区的指针
CListBox::GetText(int row, LPTSTR buff) 方法将row行的内容(CString类型)放到buff中
需要注意的是,CString对象调用GetBuffer()后,这段内容是可以直接修改的,所以此时调用CString对象的其他方法可能会出问题。
切记,用完之后用ReleaseBuffer( ) 方法释放掉,这样CString对象才能安全的进行操作。
方法二:
m_list.GetText(iSel, (LPTSTR)(LPCTSTR)str); AfxMessageBox(str);