VC++에서 SQLite 사용하기 DarkKaiser, 2010년 4월 6일2023년 9월 5일 * 참고 사이트 http://neodreamer.tistory.com/128 http://www.joinc.co.kr/modules/moniwiki//wiki.php/SQLite%20Windows Continue Reading
SQLite 정적 라이브러리 만들기 DarkKaiser, 2010년 4월 6일2023년 9월 6일 SQLite 홈페이지 http://sqlite.org/ Source Code http://sqlite.org/sqlite-source-3_6_23_1.zip Precompiled Binaries For Windows http://sqlite.org/sqlitedll-3_6_23_1.zip 1. Win32 콘솔 프로그램을 만든다. 프로젝트 생성시 정적 라이브러리로 설정하고 미리 컴파일된 헤더를 사용하지 않는다. 2. 프로젝트 생성 후 SQLite 소스를 프로젝트에 추가한다. 추가후 Tcl 관련 기능을 사용하지 않기 때문에 tclsqlite.c 파일을 프로젝트에서 삭제하고 전처리기 정의의 NO_TCL을 설정해 준다. Continue Reading
ActiveX 설치시에 CAB 파일내의 EXE 파일 실행하기 DarkKaiser, 2010년 4월 4일2023년 9월 5일 [version] ; version signature (same for both NT and Win95) do not remove signature="$CHICAGO$" AdvancedINF=2.0 [Add.Code] MessengerApp.INF=MessengerApp.INF [MessengerApp.INF] file-win32-x86=thiscab [Setup Hooks] hook=hook [hook] run=%EXTRACT_DIR%\MessengerApi.exe /s [Setup Hooks]에 실행할 파일명을 넣어주면 된다. 이때 CAB 파일을 묶을때 INF 파일도 같이 포함하도록 한다. Continue Reading