//CString to BYTE* CString str; str = _T("TEST"); BYTE* By; By = new BYTE(str.GetLength()+1); strcpy((char*)By;, CT2A(str)); delete[] By |
//CString to BYTE* CString str; str = _T("TEST"); std::string strData = CT2CA(str); int nDataLength = strData.length(); BYTE* By; By = new BYTE(nDataLength); ZeroMemory(By , sizeof(BYTE) * nDataLength); for (int i = 0; i < nDataLength; i++) { By[i] = strData.at(i); } delete[] By |
'공부 > MFC_자주쓸거' 카테고리의 다른 글
[MFC] 다이얼로그 엔터키 막기 _키보드메세지_PreTranslateMessage (0) | 2021.05.26 |
---|---|
[MFC] 실행파일 경로 (0) | 2021.05.18 |
[MFC] 문자열 변환 CString, const *char (CT2A , T2A) (0) | 2021.04.16 |
[MFC] 문자열 변환 CString , Char* 유니코드 환경 (0) | 2021.04.16 |
[MFC] 문자열변환 string , CString (0) | 2021.04.16 |