Windows CE 프로그래밍에서 Atl 관련 헤더에서 에러날때.

Posted by 빵빵빵
2010/10/03 01:43 전산(컴퓨터)/Mobile-CE&PPC



C:\Program Files\Microsoft Visual Studio 9.0\VC\ce\atlmfc\include

폴더에 해당 해더랑 inl 파일이 존재한다.

디버거에서 f:\dd\vctools\vc7libsce\ship\atlmfc\include\atltime.inl 파일이라고 나오고 날리다...
난 f드라이브도 없는데... ㅡㅡ;

디버거로 바로 쫒아가기가 안될때 어서트 라인을 갖고 찾으면 된다.



2010/10/03 01:43 2010/10/03 01:43

위도 경도를 주소로 변경해주는 프로그램

Posted by 빵빵빵
2010/09/27 17:25 전산(컴퓨터)/안드로이드



import java.io.IOException;
import java.util.List;
import java.util.Locale;

import android.content.Context;
import android.location.Address; 
import android.location.Geocoder; 
import android.util.Log;

public class ReverseGeocode {

final String tag = "ReverseGeocode";

//좌표를 주소의 String으로 변환
public String point2address(double latitude, double longitude, Context context) 
      throws IOException{

String string = new String();

//geocoder의 실체화
Log.d(tag, "Start point2adress");
Geocoder geocoder = new Geocoder(context, Locale.JAPAN);
List<Address> list_address = geocoder.getFromLocation(latitude, longitude, 5); //마지막 인수는 반환하는 검색 결과수

//지오코딩으로 성공하면 String으로
if (!list_address.isEmpty()){

Address address = list_address.get(0);
StringBuffer strbuf = new StringBuffer();

//adress를 String으로
String buf;
for (int i = 0; (buf = address.getAddressLine(i)) != null; i++){
Log.d(tag, "loop no."+i);
strbuf.append("address.getAddressLine("+i+"):"+buf+"\n");
}

string = strbuf.toString();

}

//실패(List가 널값이면)
else {
Log.d(tag, "Fail Geocoding");
}

Log.d(tag, string);
return string;
}

}
출처 : http://gimmehide.tistory.com/254
http://d.hatena.ne.jp/oldfish/20081214/1229257066
2010/09/27 17:25 2010/09/27 17:25

DLL Injection 다른 프로세스에 침투하기

Posted by 빵빵빵
2010/09/15 20:18 전산(컴퓨터)/PC-Windows



http://www.reversecore.com/38

http://www.reversecore.com/40

http://www.reversecore.com/41

http://www.reversecore.com/43

http://www.reversecore.com/44

2010/09/15 20:18 2010/09/15 20:18