CodeGear C++ Builder 2009 - Cannot convert 'WideString' to 'wchar_t *' 문제해결
from Computer/Borland C++ 2009. 6. 24. 13:19C++ Builder 6에서 쓰던 소스를 CodeGear C++ Builder 2009 에서 돌리니
Cannot convert 'WideString' to 'wchar_t *' 에러가 주루루룩~
무엇때문인지는 확실히 모르지만 암튼 해결방법은
WideString 대신 StringToOleStr 를 사용하면 된다는것 ㅡㅡv
도움말의 Description을 보면 다음과 같다. (뭐, 바도 모르겠지만 -_-;)
StringToOleStr allocates memory and copies string data from a native AnsiString into a format that can be passed to OLE functions.
Cannot convert 'WideString' to 'wchar_t *' 에러가 주루루룩~
무엇때문인지는 확실히 모르지만 암튼 해결방법은
WideString 대신 StringToOleStr 를 사용하면 된다는것 ㅡㅡv
도움말의 Description을 보면 다음과 같다. (뭐, 바도 모르겠지만 -_-;)
StringToOleStr allocates memory and copies string data from a native AnsiString into a format that can be passed to OLE functions.
'Computer > Borland C++' 카테고리의 다른 글
[Code Gear 2009 C++ Builder] 단일 실행파일 만들기 옵션 (0) | 2010.07.12 |
---|---|
Popup Menu 정보 얻기(?) (0) | 2010.02.18 |
CreateProcess를 이용한 UltraVnc 접속 (0) | 2010.02.18 |
델파이 및 C++ 빌더 파일 확장자 비교 (0) | 2009.06.24 |
TMemo 컨트롤 사용시 스크롤바 자동으로 내리기 (0) | 2009.05.28 |