MFC에서 CString형에 들어간 hex형식의 스트링을 실제 hex코드로 변환해본다.
example>
CString str = "0xff";
CString out;
unsigned char hexout;
out = str.GetBuffer(0);
sscnaf(out, "%x", &hexout);
'Robotics > Software Tech.' 카테고리의 다른 글
MFC 샘플 소스코드 (0) | 2007.09.20 |
---|---|
메세지 펌프(Message Pump) (0) | 2007.09.08 |
SOAP에 대해서. (0) | 2007.09.06 |
SOAP(Simple Object Access Protocol) (0) | 2007.09.06 |
[MFC Tip] 화면보호기 실행 방법 (0) | 2007.08.30 |