Andrew's Garage

Shrunk Expand

Primary Navigation

← Older postsNewer posts→
  • [펌] AIX DBX 사용법

    dbx와 core 파일을 분석할때는 다음과 같이 하자.   우선 첫째로 현재 해당 core파일을 생성한 바이너리 부터 확인해보자. file 다음 core 파일을 입력하면 현재 core 파일의 [비트], [생성한 바이너리명] 을 알 수 있다. $> file core core_: AIX core file 64-bit, server   그…


    Continue reading → Post ID 436

    Posted on 2014-12-11 3:30 AM by andrew Comment
    📂This entry was posted in C/C++ 참고를 위한 저장물
  • apache SSL virtual host 설정 sample

    UL { MARGIN-TOP: 0mm; MARGIN-BOTTOM: 0mm } OL { MARGIN-TOP: 0mm; MARGIN-BOTTOM: 0mm } P { MARGIN-TOP: 0mm; MARGIN-BOTTOM: 0mm } P { MARGIN-TOP: 2px; MARGIN-BOTTOM: 2px } <VirtualHost *:443> JkMo…


    Continue reading → Post ID 433

    Posted on 2014-12-10 7:39 PM by andrew Comment
    📂This entry was posted in jboss&tomcat WAS, Servet Containers
  • [펌]‘다른 개발자는 어떻게 쓸까?’ 사소하고 재미있는 9가지 프로그래밍 관례

    ‘다른 개발자는 어떻게 쓸까?’ 사소하고 재미있는 9가지 프로그래밍 관례 개발자 ITWorld 보통 프로그래머들은 코드를 쓸 때 예를 들어 들여쓰기에는 탭 대신 스페이스를 사용하는 등(또는 그 반대) 자기만의 관례에 따른다. 이러한 관례는 프로그래밍 언어와 조직, 그리고 개발자마다 다를 수 있다. 그렇다면 가장 일반적으로 통용되는 관례는 무엇일까? 최근 깃…


    Continue reading → Post ID 429

    Posted on 2014-12-04 3:42 PM by andrew Comment
    📂This entry was posted in 기술자료
  • [DB] DB별 가상 테이블

    Oracle ] select aaaa from dual DB2] select aaaa from sysibm.sysdummy1  


    Continue reading → Post ID 427

    Posted on 2014-12-04 3:20 PM by andrew Comment
    📂This entry was posted in DB관련 기술자료
  • [DB] SQL Syntax ( With 문 )

    [Oracle] WITH 구문 예제   [WITH 구문] – WITH구문내의 쿼리의 결과(SUB쿼리)가 여러번 사용될때(호출될때) 유용하다. – 서브쿼리 블럭에 이름을 지정할 수 있도록 해줌. – 오라클 옵티마이저는 쿼리를 인라인뷰나 임시 테이블로 여긴다. – Oracle 9 이상 지원  …


    Continue reading → Post ID 425

    Posted on 2014-12-03 9:18 PM by andrew Comment
    📂This entry was posted in DB관련 기술자료 참고를 위한 저장물
  • 명언

    평화롭게 살려면 아는 것을 다 말하지 말며 보는 것을 다 판단하지 말아야 한다. – 벤저민 프랭클린 曰 –  


    Continue reading → Post ID 423

    Posted on 2014-11-30 3:26 PM by andrew Comment
    📂This entry was posted in 일상
  • Error 'LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt' after installing Visual Studio 2012 Release Preview

    This MSDN thread explains how to fix it. To summarize: Either disable incremental linking, by going to Project Properties -> Configuration Properties -> Linker (General) -> Enable Incremental…


    Continue reading → Post ID 421

    Posted on 2014-11-28 1:27 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS
  • VisualStudio 2012, 2013에서 만든 실행화일이 XP에서 "올바른 win32 응용프로그램이 아닙니다" 라고 나오면??

    2012에서 만든 실행파일을 xp에서 실행하면 “올바른 win32 응용프로그램이 아닙니다”라는 오류가 뜸 아래와 같이 설정할 것 1. Use of MFC를 UseStandard Windows Libraries로 설정할 것 2. platform toolset 아래와 같이 설정하기 ( 프로젝트 설정 >> General(일반)…


    Continue reading → Post ID 419

    Posted on 2014-11-27 11:08 PM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS
  • [펌][mfc] Dialog창에서 Enter누르면 창이 닫히는 증상 개선 하자..

    원인은 Dailog에서 Enter나 ESC가 눌리면 Event를 찾다가 구현이 없으면 부모인 CDialog의 SetDefID 함수를 부르는데 여기에 IDOK가 구현 되어 있어서 그런 거임.. 이걸 방지 하자면 무식하게 VK_ENTER등으로 Key press를 막는 방법도 있지만. 좀더 우아 하게 원인을 찾아 해결 하고자 하면 아래와 같이 부모의 SetDef…


    Continue reading → Post ID 416

    Posted on 2014-11-26 6:24 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • [펌][MFC] 작업표시줄 숨기기_보이기

    작업표시줄 숨기기         APPBARDATA stAppBarData;         ZeroMemory( &stAppBarData, sizeof(stAppBarData) );         stAppBarData.cbSize = sizeof(stAppBarData);         stAppBarData.hWnd = (HWND)FindWind…


    Continue reading → Post ID 414

    Posted on 2014-11-25 3:09 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물

Posts navigation

Previous 1 … 19 20 21 … 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