공부/c++

MFC 유니코드 wchar_t, CString

Lectinua 2019. 5. 27. 01:54

wchar_t str[100];
GetDlgItemText(IDC_EDIT1, str, 100);
AfxMessageBox(str);

CString str2, str3; 
GetDlgItemText(IDC_EDIT1, str2);
show_str.Format(L"입력: %s", str2);
MessageBox(str3, L"제목", MB_OK);
단점: 수행능력저하

 

출처: https://www.youtube.com/watch?v=rovDcJKNavw