摘要:
1.CString转intint i _ttoi( str );2.保存中文和读取中文:CSdtioFile在Unicode环境下默认是不支持中文的,若需要存储和读取中文需要设置代码页:#include "locale.h"::_wsetlocale( LC_ALL, _T("chs") ); // 设置当前代码页支持中文stdFile.WriteString( ss );::_wsetlocale( LC_ALL, _T("") ); // 恢复默认代码页3.CString转char*char* psText;CString str 阅读全文
摘要:
CFileDialog fileDlg(TRUE); fileDlg.m_ofn.lpstrFilter = _T("Animation && Video file(*.gif;*.avi;*.mpg;*.mp4;*.wmv;*.swf)\0*.gif;*.avi;*.mpg;*.mp4;*.wmv;*.swf\0") _T("Image file(*.bmp;*.jpg;*.png;*.gif;*.png)\0*.bmp;*.jpg;*.png;*.gif;*.png\0") _T("All Files (*.*)\0*.*\ 阅读全文