[JAVASCRIPT] Event keyCode를 통한 입력체크 키보드 입력을 통한 입력체크 // function name : fn_keypressAmount // Description : 숫자와 '-', '.' 만 입력 허용 // Param : obj - Enter Key 입력시 next focus 객체 // Return : function fn_keypressAmount(obj) { // '-' : 45, '.' : 46 if (event.keyCode >= '48' && event.keyCode PROGRAMING/JAVASCRIPT 2011.06.01
[ASP] 반올림 ASP에서 FormatNumber함수를 이용해서 반올림처리를 할수 있다. (ASP에서 round함수는 반올림 함수가 아님) FomatNumber() PROGRAMING/CLASSIC ASP 2011.05.26
[PHP] cURL을 통한 웹페이지 읽어들이기 cURL(Client URL Library Frunctions) : comand line에서 URL문법을 이용하여 파일을 전송하는 프로그램 대부분 PHP에서 HTTS접속을 위해 사용 PROGRAMING/PHP 2011.05.25
[LINUX] history 명령어 리눅스에서는 각 계정별로 사용자가 사용했던 명령어들을 기록하고 있다. 이 정보는 각 계정의 홈 디렉토리에 .bash_history 파일로 존재한다. [root@localhost ~]# ls -l .bash_history [root@localhost ~]# history [root@localhost ~]# history 10 [root@localhost ~]# history | grep vi [root@localhost ~]# history -w commandHistory.txt OS/LINUX 2011.05.17
[SQLITE] SQLite for .NET 설치 비용과 부담이 없는 오픈소스 RDBMS중 하나인 SQLite는 작은 크기의 임베디드 데이터베이스 시스템이면서도 거대한 크기의 데이터베이스를 처리할수 있다. 또한 SQLite는 다양한 프로그램밍 환경에서 사용이 가능한 강력한 기능을 가추고 있다. 또한 많은 프로그래밍 언어들을 지원하고 있다. .NET용 Precompiled Binaries 다운로드 1. 설치 2. 설치 폴더 선택 3. 설치 확인 4. 설치 프로세스 진행 5. Design-Time Support 확인 6. 설치 완료 DATABASE/SQLITE 2011.05.13
[WP7] Windows Phone 개발을 위한 Tool 설치 1. Windows Phone Developer Tools (1) 다운로드 Windows Phone Developer Tools Download Windoews Phone Developer Tools (2) 다운로드한 vm_web.exe 클릭 (3) 사용 약관 동의 (4) 설치화면 (5) 사용자 지정 설치 화면 (6) 다운로드 프로세스 진행 (7) 설치 프로세스 진행 (8) 설치 완료 (9) 윈도우 재시작 2. Windows Phone Developer Tools January 2011 Update (1) 다운로드 Windows Phone Developer Tools January 2011 Update Download Windows Phone Developer Tools January 2011 Updat.. PROGRAMING/WP7 2011.05.12
[WINDOWS] Run commands list (알파벳순) 실행 : Windows logo Key + "R" Key [A] Add/Remove Programs = appwiz.cpl Administrative Tools = control admintools Authorization Manager= azman.msc "NEW" [C] Calculator = calc Certificate Manager = certmgr.msc Character Map = charmap Check Disk Utility = chkdsk Control Panel = control "NEW" Command Prompt = cmd.exe Component Services = dcomcnfg Computer Management = compmgmt.msc = CompMgmtLauncher ".. OS/WINDOWS 2011.05.11
[WINDOWS] Run commands list (기능순) 실행 : Windows logo Key + "R" Key Run commands for Application. %appdata% : Run command to open Application Data calc: Run command for calculator userinit : Run command to open My documents Perfmon : Performance monitor application. Control (or) Control Panel : Launches Control panel (yes, just run control panel from Run window) Winword: Office Word application Excel: Office Excel application mspa.. OS/WINDOWS 2011.05.11
[WP7] Windows Phone 7 Apps 광고 집어넣기위한 준비 1. Download the Ad Control SDK Download the Ad SDK to build your app and run ads in test mode that requires no on-boarding to try out the Microsoft Advertising SDK for Windows Phone 7. 2. Register your mobile apps on pubCenter. Sign up and register your Windows Phone apps using Microsoft Advertising's solution for Windows Phone 7 publishers and app developers. 3. Implement and Submit. Set the Ap.. PROGRAMING/WP7 2011.05.11
[HTML] Html Codes Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1 Browser support: All browsers ASCII HTML HTML Dec Hex Symbol Number Name Description 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F ! " # $ % & ' ( ) * + , - . / ! " # $ % & ' ( ) * + , - . / " & space exclamation point double quotes number sign dollar .. PROGRAMING/HTML 2011.05.05