Dev
proxy 서버를 이용한 웹 서핑
회사에서 싸이월드를 막나왔군요. 머 제가 싸이월드를 운영하고 있지는 않지만, 막아놨다는 말을 듣고 한번 들어가 봤습니다. 역시 Proxy를 통하면 접속이 가능하네요. 대부분의 Proxy서버는 외국으로 속도가 느리지만, 우리나라에도 Proxy서버가 생각보다 많이 있네요. Proxy 서버 리스트 여기에서 몇페이지 넘어가면 Korea가 있습니다.
PDA 가로보기, 세로보기 전환 (Landscape, Portrait)
enumDO에 정의되어 있는 모드를 차례대로 변환 합니다. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- [CODE type=c++] #include #include "EzLotator.h" DWORD getDisplayOrientation(DEVMODE* pDevmode); void setDisplayOrientation(DEVMODE* pDevmode, DWORD angle); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { DEVMODE devmode = {0,}; DWORD enumDO[] = { DMDO_..
How To Use CeRapiInvoke
How To Use CeRapiInvoke() View products that this article applies to. Article ID : 299891 Last Review : August 30, 2004 Revision : 1.0 This article was previously published under Q299891 On This Page SUMMARY MORE INFORMATION Using CeRapiInvoke() in Block Mode Using CeRapiInvoke in Stream Mode Building Modules That Use RAPI APPLIES TO SUMMARY The remote API (RAPI) CeRapiInvoke() enables you to in..
PDA에서 외장 메모리 삽입/삭제 시 이벤트
QA: How to implement autorun from a storage card? By Joao Paulo Figueira, June 02, 2003. Print version Question I want to start an application when the user inserts or removes a storage card. How do I implement such functionality? Answer You can execute an application when a storage card is inserted or removed from your device. This may allow your users to install applications, perform backups, ..
UTF-8 인코딩 방식으로 다국어 페이지 만들기
1. 일반 Ansi 형식이 아닌 UTF-8형식의 Text파일로 스크립트 파일을 저장합니다. 2. 서버 스크립트 최상단에 위의 코드를 넣어줍니다. 3. html 해더부에 위의 코드를 넣어 줍니다. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 예재 소스 입니다. inputUnicode.html ------------------------------------------------------------ testUnicode.asp ------------------------------------------------------------ function.asp ------------------------------------------------..
자바스크립트용 email 주소 검사 함수
function CheckMail( str ) { var regValidMail=/^[^@]+@[^\.]+[\.][^$]+$/g; if( regValidMail.test(str) ) { return true; } return false; }