char 转 CString 很简单
如
char *p="hello world";
CString str(p);
就可以了,我经常用的
nLineCount = c_myEdit.GetLineCount();
for (i=0; i < nLineCount; i++)
{
// length of line i:
int len = c_myEdit.LineLength(c_myEdit.LineIndex(i));
c_myEdit.GetLine(i, strText.GetBuffer(len), len);
strText.ReleaseBuffer(len);
code.Add(strText);//code is linklist or array
}
char *s = "this is a test";
CString str = CString(s);
GetWindowText的参数可以是CString 类型的,为什么要使用字符数组做参数,之后再把字符数组转换为CString 类型的?没有这个必要吧朋友。