hit counter


SaveAsPDFandXPS.zip

Microsoft Office 2007 Excel 파일 PDF 저장시키는 Addon



,

XP 임베디드 이미지 빌드시 Software/System/Storage & File Systems/Applications -> FAT/NTFS Common Format/Tools Files 을 추가하면 chkdsk를 사용할 수 있다.


,

구글 날씨 API가 종료 됨에 따라 다른 날씨 API를 찾아 보던 중


야후 날씨 API는 정식 서비스라는 댓글을 보고 바로 변경 적용


날씨 코드가 많긴 하지만 구글 이미지에 야후 날씨에 맞는 아이콘이 나와서 쉽게 해결~


야후 날씨 API - http://developer.yahoo.com/weather/

'Computer' 카테고리의 다른 글

Windows XP Embedded Chkdsk 추가  (0) 2013.09.09
Windows 8 맑은 고딕 다운로드  (0) 2012.08.02
Sqlite3 Error Code  (0) 2012.08.02
오라클 9i 2003에서 설치 안될 때...  (0) 2011.03.11
Unix(유닉스) 시간 설정 - TimeSync  (0) 2010.09.03
,

Windows 8 맑은 고딕 다운로드


W8_MalgunGothic.zip


,

Sqlite3 Error Code

from Computer 2012. 8. 2. 11:56

#define SQLITE_OK           0   /* Successful result */

/* beginning-of-error-codes */

#define SQLITE_ERROR        1   /* SQL error or missing database */

#define SQLITE_INTERNAL     2   /* Internal logic error in SQLite */

#define SQLITE_PERM         3   /* Access permission denied */

#define SQLITE_ABORT        4   /* Callback routine requested an abort */

#define SQLITE_BUSY         5   /* The database file is locked */

#define SQLITE_LOCKED       6   /* A table in the database is locked */

#define SQLITE_NOMEM        7   /* A malloc() failed */

#define SQLITE_READONLY     8   /* Attempt to write a readonly database */

#define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite3_interrupt()*/

#define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */

#define SQLITE_CORRUPT     11   /* The database disk image is malformed */

#define SQLITE_NOTFOUND    12   /* Unknown opcode in sqlite3_file_control() */

#define SQLITE_FULL        13   /* Insertion failed because database is full */

#define SQLITE_CANTOPEN    14   /* Unable to open the database file */

#define SQLITE_PROTOCOL    15   /* Database lock protocol error */

#define SQLITE_EMPTY       16   /* Database is empty */

#define SQLITE_SCHEMA      17   /* The database schema changed */

#define SQLITE_TOOBIG      18   /* String or BLOB exceeds size limit */

#define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */

#define SQLITE_MISMATCH    20   /* Data type mismatch */

#define SQLITE_MISUSE      21   /* Library used incorrectly */

#define SQLITE_NOLFS       22   /* Uses OS features not supported on host */

#define SQLITE_AUTH        23   /* Authorization denied */

#define SQLITE_FORMAT      24   /* Auxiliary database format error */

#define SQLITE_RANGE       25   /* 2nd parameter to sqlite3_bind out of range */

#define SQLITE_NOTADB      26   /* File opened that is not a database file */

#define SQLITE_ROW         100  /* sqlite3_step() has another row ready */

#define SQLITE_DONE        101  /* sqlite3_step() has finished executing */

/* end-of-error-codes */

,

Tools -> Options -> Debugger Options -> CodeGear Debuggers -> Language Exceptions



,

Indy 10 Upgrade

from Computer/Borland C++ 2011. 12. 5. 09:55

For CodeGear C++ Builder 2009 Indy 10 Version Upgrade

Include Install DOC


출처 : http://www.mjfreelancing.com/index.php?option=com_content&view=article&id=13&Itemid=16

,


Target Analyzer Probe - Windows XP Embedded Device Export


,

Dos용 Ghost 11 버전

from Computer/Program 2011. 11. 30. 17:27

Dos용 Ghost 11 버전

,

오라클 홈페이지에서 받은 설치 파일을 압축 풀고 setup.exe를 실행했는데 아무 반응이 없을때...

압축을 풀은 폴더 명에 공백이 들어있는지 확인...

ex) Oracle9i x86 install -> Oracle9i_x86_install

이런식으로 공백을 다른 문자로 치환해서 setup.exe를 실행하면 해결!!

,