标签:convert unicode编码 size style family har code not cannot
CString a;
解决方法:
cannot convert parameter 1 from ‘const char [3] ‘ to ‘const wchar_t * ‘
从这个看你可能采用了UNICODE编码,
可以用
a.Format(L "%d ", b);
或者
a.Format(_T( "%d "), b);
cannot convert parameter 1 from 'const char [] ' to 'const wchar_t *
标签:convert unicode编码 size style family har code not cannot
原文地址:http://www.cnblogs.com/chay/p/7688113.html