본문 바로가기

Hello CE,Mobile

the microsoft activesync reported the following error unable to load device side components [ WINCE 600 ] Visual Studio 2005 에서 Windows CE Remote Registry Editor 에서 아래 메시지 나오며 Connect 되지 않을 때 해결 방법입니다. C:\Program Files (x86)\Common Files\microsoft shared\Windows CE Tools\Platman\target\wce600\armV4i 폴더 복사C:\Program Files (x86)\Common Files\microsoft shared\Windows CE Tools\Platman\target\wce600\armV4 를 만듬. Reconnect 하면 접속 잘됨.
해상도에 따른 Font 크기 #define MulDiv(a,b,c) (((a)*(b))/(c)) int nFontSize = 8; m_lfBuddyFont.lfHeight = -MulDiv(nFontSize, GetDeviceCaps(pDC,LOGPIXELSY) ,72); LOGPIXELSX 인치당 픽셀수, 즉 해상도를 조사한다. LOGPIXELSY - 가 붙은 이유는 Character Height 값을 셋팅하기 위함. ----------
WIN32 GESTURE COMMAND
Windows Mobile 한국어 버전에서 Default SIP 언어 변경 Windows Mobile 한국어 버전에서 Default SIP 언어 변경 [HKEY_CURRENT_USER\ControlPanel\Korean IME UI\Settings]"Default Korean Input"=dword:00000001 -> dword:00000000 기본이 한글 -> 영어 변경 ->
check operator precedence for possible error; use parentheses to clarify precedence 'operator' : 연산자 우선 순위에 오류가 있는지 확인하십시오. 괄호를 사용하여 우선 순위를 명확하게 지정하십시오.'operator' : check operator precedence for possible error; use parentheses to clarify precedence
CE 유용한 명령어 ======================================================================================DLL Export 된 함수 목록 보기======================================================================================dumpbin -exports SendMail.dll
Windows CE 6.0 설치 설치 순서1. Visual Studio 20052. Visual Studio 2005 Service Pack 1(R2 CD에 포함되어 있음)3. Visual Studio 2005 Service Pack 1 Update for Windows Vista (if applicable)(R2 CD에 포함되어 있음)4. Windows Embedded CE 6.0 Platform Builder5. Windows Embedded CE 6.0 SP1 (required if PB 6.0 Tools have been installed)6. Windows Embedded CE 6.0 R27. Windows Embedded CE 6.0 R3 업그레이드할 프로그램이 없거나 업그레이드 패치에서 다른 버전의 프로그램을 업데이트하므로..
IMEI Windows Mobile ● Phone을 키고 *#06# 키를 누르면 IMEI가 디스플레이 됩니다. ● source 로는 아래와 같이 사용합니다. #define TAPI_API_LOW_VERSION 0x00020000 #define TAPI_API_HIGH_VERSION 0x00020000 #define EXT_API_LOW_VERSION 0x00010000 #define EXT_API_HIGH_VERSION 0x00010000 #define CELLTSP_LINENAME_STRING (L"Cellular Line") // Need SignatureBOOL GetIMEI(CString &csIMEI) { DWORD dwNumDevs; DWORD dwAPIVersion = TAPI_API_HIGH_VERSION; LINEINITI..