GetLBText( ) 和 GetWindowText( ) 区别:
GetLBText( ) 函数.该函数为组合框成员函数其原型为:
// 函数说明:把索引号为 nIndex 的数据放到 rString 变量中
// 参数说明:nIndex 为列表框中数据的索引值, rString 为字符串
void GetLBText( int nIndex, CString &rString );
GetLBTextLen(int nIndex) 函数 就是得到索引号为nIndex中数据的长度;
GetWindowText( ) 函数 获得显示的文本内容.每个控件都有,不能显示的内容无法获得。