// CString 문자열의 값을 HEX 값(16진수)로 리턴하는 함수입니다. // 조금 응용하면 다르게 표현도 가능하겠죠 ㅎㅎ CString ConvertToHex(CString data) { CString returnvalue; for (int x = 0; x < data.GetLength(); x++) { CString temporary; int value = (int)(data[x]); returnvalue.format("%02X ", value); returnvalue += temporary; } return returnvalue; }
윈도우를 항상 위에 보여주는 소스입니다. Introduction This article show you how to keep a window always on top. A friend asked me about this question,I searched it on the internet and found some codes but none of them works well,so I think it is necessary to write a article about to help the beginners. To keep a window always on top,you should do as flowing: 1.Create a Dialog based project(Similarly,you can creat..
- Total
- Today
- Yesterday