CString <-> wchar_t *
- Module/WindowsMFC
- 2008. 12. 12.
// CString -> wchar_t * -_-;;;;; 이상함..;;
CStringW aaa(_T("hello!"));
wchar_t *a = (wchar_t *)aaa.GetBuffer();
MessageBoxW(NULL, a, a, 0);
//이것도.... 되긴되는데..;;;;
wchar_t wTemp[1024] = L"\0";
MultiByteToWideChar(CP_ACP, 0, m_szNotice,m_szNotice.GetLength(),wTemp,1024);
// wchar_t * -> CString 변환
wchar_t *aaa = L"Hello, World!";
CString temp(aaa);
m_szText = temp;
'Module > WindowsMFC' 카테고리의 다른 글
MFC Explorer 실행하기 (0) | 2008.12.23 |
---|---|
MFC Document 창 size 조절하기 (0) | 2008.12.23 |
MFC flash 연동하기 - 2 (0) | 2008.10.28 |
CString <-> char 변환 (0) | 2008.10.27 |
MFC Dlg 모달리스로 띄우기 (0) | 2008.10.16 |