Ini配置文件可以读取换行的数据吗?如何实现如果可以的话?
发布网友
发布时间:2022-05-04 01:30
我来回答
共2个回答
热心网友
时间:2022-06-20 11:43
在.ini配置文件中,设置了:
[Info]
Message = Hello Word;
其中,
CString tempStr(_T(""));
::GetPrivateProfileString(_T("Info"), _T("Message"), _T(""), tempStr.GetBuffer(1000), 1000, iniPath/*路径*/);
tempStr.ReleaseBuffer();
用MessageBox(tempStr),如何实现显示为:
Hello
Word
而且,有下拉框的效果。
热心网友
时间:2022-06-20 11:43
你解决了吗,我这两天也遇到同样的问题,在配置文件里加了\r\n没有用