foreign language support (wodFtpDLX / wodFtpDLX.NET)
Hi Yoon.
I believe this line:
vLocalFile.bstrVal = str1.AllocSysString();
uses CP_ANSI conversion from (char *) to (BSTR). I suggest you switch to using UTF8 conversion. So, instead of using CString's integrated AllocSysString, you can convert string to BSTR by yourself using
int nLen = WideCharToMultiByte(CP_UTF8, 0, unicodestr, -1, ansistr, a, NULL...)
and then pass that BSTR to vLocalFile.bstrVal.
Can you try that?
Regards,
Jasmine.
Complete thread:
- foreign language support - tallycom, 2015-05-15, 06:58
- foreign language support - Jasmine, 2015-05-15, 08:53