2011년 12월 30일 금요일
[ActiveX] Install Check (설치여부 체크)
ActiveX가 사양기술이지만 웹개발 하다보면 만들진 않아도 사용은 할 수 밖에 없지
<object id="objActiveX" onerror="activeXError()"></object>
<script language="javascript" type="text/javascript">
var isActiveXInstall;
function activeXError() {
isActiveXInstall = false;
}
</script>
2011년 12월 24일 토요일
[GoogleAPI] MapTypeId 종류
Google Maps Javascript API V3 Map Types
기본제공 지도형태
MapTypeId.ROADMAP
- displays the default road map view
MapTypeId.SATELLITE
- displays Google Earth satellite images
MapTypeId.HYBRID
- displays a mixture of normal and satellite views
MapTypeId.TERRAIN
- displays a physical map based on terrain information.
링크
기본제공 지도형태
MapTypeId.ROADMAP
- displays the default road map view
MapTypeId.SATELLITE
- displays Google Earth satellite images
MapTypeId.HYBRID
- displays a mixture of normal and satellite views
MapTypeId.TERRAIN
- displays a physical map based on terrain information.
링크
2011년 12월 21일 수요일
2011년 12월 9일 금요일
[C#] 대문자 소문자 판별
#region 대문자판별
public static bool IsUpper(char c)
{
return (0x40 < c && 0x5b > c) ? true : false;
}
#endregion
#region 소문자판별
public static bool IsLower(char c)
{
return (0x60 < c && 0x7b > c) ? true : false;
}
#endregion
2011년 12월 4일 일요일
[Error] java.lang.IllegalStateException: zip file closed
java.lang.IllegalStateException: zip file closed
알수없는에러..
http://blog.naver.com/PostView.nhn?blogId=hazard11&logNo=80036769856&parentCategoryNo=7&viewDate=¤tPage=1&listtype=0
이클립스 재시작이 정답이다.
피드 구독하기:
글 (Atom)