如何设置多行显示及滚动参考这篇博客
作者:qq_35359581
来源:CSDN
原文:https://blog.csdn.net/qq_35359581/article/details/78037485
CString相加问题
在多行显示的时候遇到了变量相加不显示的问题,解决方案如下:
CString strFilePath = _T(".\\SetInf.ini");
CString temp,temp1; //临时存储信息
::GetPrivateProfileString(strSection, _T("Power"), _T(""), temp.GetBuffer(MAX_PATH), MAX_PATH, strFilePath);
temp.ReleaseBuffer();//读取到的变量必须先释放buffer,才能进行加法运算
temp1 = _T("Power :") + temp + _T(" (mW) \r\n");
m_logtext += temp1; //编辑框变量累加赋值
UpdateData(FALSE);//显示在控件上