http://msdn.microsoft.com/en-us/library/bb508508(v=vs.85).aspx Handling HTML Element Events 9 out of 10 rated this helpful – Rate this topic The HTMLElementEvents2 interface is an event sink int…
-
-
VARIANT to std::string
Here’s one way, not necessarily the best. In general, std::string doesn’t play very well with VARIANT. #include <comutil.h> #include <string> std::string from_variant(VARIANT…
-
BSTR – char*간의 변환 및 BSTR에 대해…
BSTR – char*간의 변환 #include <afxconv.h>void BSTRtoCHAR(char *Msg[], const BSTR conv) { USES_CONVERSION; strcpy( *Msg, OLE2T(conv) ); }void CHARtoBSTR( BSTR *Msg, const char *conv ) { USES_C…
-
UTF-8 인코딩된 파일 읽고 EUC-KR 변경 encoded file read
package com.javawide.files; import java.io.*; public class UTF8Reader { public static void main(String[] args) { UTF8Reader reader = new UTF8Reader(); try { String utf8String = reader.readFully(…
-
JAVA – 한글 인코딩 변환 체크 한방에 끝내기
String word = “무궁화 꽃이 피었습니다.”; System.out.println(“utf-8 -> euc-kr : ” + new String(word.getBytes(“utf-8”), “euc-kr”)); System.out.println(…
-
javascript ==, ===의 의미
0==false// true 0===false// false, because they are of a different type 1==”1″// true, auto type coercion 1===”1″// false, because they are of a different type
-
자바 토큰 토크나이져(StringTokenizer)로 파일입력 파일출력
import java.io.*; import java.util.*; public class A { public static void main(String[] args) throws IOException{ FileInputStream fin = new FileInputStream(“a.txt”); BufferedReader in = …
-
Web Browser 컨트롤
Web Browser Control FAQ 다음의 FAQ(FAQ라고 하기도 뭐 합니다만.. )는 제가 VC++ Q&A 에서 그 동안 봐왔던 Web Browser 컨트롤과 관련 질문들에 대한 답 글과 KB, MSDN 링크 모음 들 입니다. 그 동안 집 컴퓨터에 정리만 해 놓고 필요할 때 종종 참고 했었는데 얼마 전 노트북 하드가 사망 하…
-
64비트 윈도우를 프로그래밍 하기 위해서 알아야 할 모든 것들
개발지식창고/유용한팁 2010/08/22 03:43 글이 너무 좋아서, 한 번 번역해 보았습니다. 혹시 향후에 64비트 윈도우에서 프로그래밍 하실 분은 그냥 한 번 참고해 보시기 바랍니다. 원문은 아래에서 찾아보실 수 있습니다. http://msdn.microsoft.com/msdnmag/issues/06/05/x64/#contents 추가사항 (2006-…
-
[MFC] 자신의 IP정보 가져오기(Local, gateway 등) – GetAdaptersInfo
ARP 모듈에서 스푸핑 기능사용 시 Local IP와 gateway IP를 수동으로 적자니 귀찮아서 자동 입력으로 수정함. 이에 따라 추가 코드가 발생했는데…. 자신의 IP 주소를 가져오는 법은 다음과 같다. Memget 내에 이리저리 왔다갔다 하는 불필요한 소스코드가 좀 많아서 핵심만 적겠음. 일단 컴퓨터에서 디바이스…