Andrew's Garage

Shrunk Expand

Primary Navigation

← Older postsNewer posts→
  • Handling HTML Element Events

    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…


    Continue reading → Post ID 224

    Posted on 2014-07-23 5:21 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • 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…


    Continue reading → Post ID 220

    Posted on 2014-07-23 3:22 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • 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…


    Continue reading → Post ID 216

    Posted on 2014-07-23 2:40 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • 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(…


    Continue reading → Post ID 214

    Posted on 2014-07-22 2:12 AM by andrew Comment
    📂This entry was posted in JAVA 참고를 위한 저장물
  • JAVA – 한글 인코딩 변환 체크 한방에 끝내기        

    String word = “무궁화 꽃이 피었습니다.”; System.out.println(“utf-8 -> euc-kr        : ” + new String(word.getBytes(“utf-8”), “euc-kr”)); System.out.println(…


    Continue reading → Post ID 212

    Posted on 2014-07-22 2:09 AM by andrew Comment
    📂This entry was posted in JAVA 참고를 위한 저장물
  • 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


    Continue reading → Post ID 210

    Posted on 2014-07-21 9:35 PM by andrew Comment
    📂This entry was posted in JAVA javascript
  • 자바 토큰 토크나이져(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 = …


    Continue reading → Post ID 208

    Posted on 2014-07-21 9:34 PM by andrew Comment
    📂This entry was posted in JAVA 참고를 위한 저장물
  • Web Browser 컨트롤

    Web Browser Control FAQ   다음의 FAQ(FAQ라고 하기도 뭐 합니다만.. )는 제가 VC++ Q&A 에서 그 동안 봐왔던 Web Browser 컨트롤과 관련 질문들에 대한 답 글과 KB, MSDN 링크 모음 들 입니다.  그 동안 집 컴퓨터에 정리만 해 놓고 필요할 때 종종 참고 했었는데 얼마 전 노트북 하드가 사망 하…


    Continue reading → Post ID 206

    Posted on 2014-07-16 2:45 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • 64비트 윈도우를 프로그래밍 하기 위해서 알아야 할 모든 것들

    개발지식창고/유용한팁 2010/08/22 03:43 글이 너무 좋아서, 한 번 번역해 보았습니다. 혹시 향후에 64비트 윈도우에서 프로그래밍 하실 분은 그냥 한 번 참고해 보시기 바랍니다. 원문은 아래에서 찾아보실 수 있습니다. http://msdn.microsoft.com/msdnmag/issues/06/05/x64/#contents 추가사항 (2006-…


    Continue reading → Post ID 204

    Posted on 2014-07-16 2:42 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • [MFC] 자신의 IP정보 가져오기(Local, gateway 등) – GetAdaptersInfo

    ARP 모듈에서 스푸핑 기능사용 시 Local IP와 gateway IP를 수동으로 적자니 귀찮아서 자동 입력으로 수정함. 이에 따라 추가 코드가 발생했는데….   자신의 IP 주소를 가져오는 법은 다음과 같다. Memget 내에 이리저리 왔다갔다 하는 불필요한 소스코드가 좀 많아서 핵심만 적겠음.   일단 컴퓨터에서 디바이스…


    Continue reading → Post ID 202

    Posted on 2014-07-16 2:39 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물

Posts navigation

Previous 1 … 28 29 30 … 36 Next

  • Recent Posts

    • MySql 관리
    • Pair Programming Is Not Pair Coding
    • 기기 고유 식별(Identify) 얻기 device_info
    • QR 코드 스캔(QR Code Scan) 초간단 예제(Simple example)
    • 싱글톤(Singleton) 클래스
  • Recent Comments

    • Shela SchurShela Schur on RED5 & FFMPEG & FFserver 스트리밍 서버 구축하기
    • DeepsDeeps on [Linux] /dev/sdc1 is apparently in use by the system; will not make a filesystem here!
    • IvanIvan on How to install openssl on windows with visual studio 2015
    • KeenanBoldKeenanBold on centos7] Adding to Firwwall rules
    • andrewandrew on How to install POCO C++ libraries on Windows with Visual studio 2015
  • Archives

    • December 2021
    • May 2021
    • January 2021
    • June 2020
    • August 2018
    • April 2017
    • March 2017
    • February 2017
    • September 2016
    • August 2016
    • July 2016
    • June 2016
    • September 2015
    • August 2015
    • July 2015
    • June 2015
    • May 2015
    • April 2015
    • March 2015
    • February 2015
    • January 2015
    • December 2014
    • November 2014
    • September 2014
    • August 2014
    • July 2014
    • June 2014
  • Categories

    • C/C++
    • cmake/make
    • CUBE
    • DB관련
    • DIY & H/W
    • flutter
    • JAVA
    • javascript
    • jboss&tomcat
    • JEUS & WEBToB
    • Linux
    • Linux
    • MDX등
    • MFC & WINDOWS
    • OS tune
    • OSX
    • PDW
    • SVN
    • Uncategorized
    • UNITY3D/COCOS2D
    • VSC
    • WAS, Servet Containers
    • Webserver
    • 기술
    • 기술자료
    • 일반
    • 일상
    • 참고를 위한 저장물
    • 책
  • Meta

    • Log in
    • Entries feed
    • Comments feed
    • WordPress.org
  • AdSense


©2025 boots Entries RSS and Comments RSS Child theme Boots of Raindrops Theme