티스토리 툴바


분류없음2011/10/04 11:00

준비 사항
1. SD 카드
2. 초기화 파일

방법
1. SD 카드에 초기화 파일을 넣고 기기 옆면에 나사를 풀러 넣는다.
   이 때 파일은 SD 카드 상위에 폴더 없이 넣어야 된다.
2. '1', '9' 버튼과 상단의 붉은 버튼을 눌러 Cold Boot 한다.
3. 부팅시 양쪽의 노란색 버튼(바코드 버튼)을 누른다.

초기화 방법만 알고 있을 뿐 사용해 보지 못함.

저작자 표시 비영리 동일 조건 변경 허락
Posted by wxzzsk
분류없음2011/09/30 13:23

http://www.hardreset.eu/symbol_mc70_hard_reset_soft_reset.html

There are two reset functions, warm boot and cold boot. A warm boot restarts the EDA by closing all running
programs. A cold boot also restarts the EDA, and also resets the clock. Data saved in flash memory or a memory card is not lost.
Perform a warm boot first. If the EDA still does not respond, perform a cold boot.

Performing a Warm Boot - Soft reset

Hold down the Power button for approximately five seconds. As soon as the EDA starts to boot release the Power button.

Performing a Cold Boot - Hard reset

To perform a cold boot simultaneously press the Power button and the 1 and 9 keys.



저작자 표시 비영리 동일 조건 변경 허락
Posted by wxzzsk
분류없음2011/07/17 23:21


.Net 2.0 이상 설치된 경우만 사용 가능 합니다.
저작자 표시 비영리 동일 조건 변경 허락
Posted by wxzzsk
Develop/SQL2011/07/06 11:22
관리자 권한이 없어서 설치가 오류 나는 경우. (Win7 에서 발생)

해결 방안 'cmd.exe' 를 '관리자 권한으로 실행' 으로 실행 후 설치 파일을 도스에서 실행 한다.
저작자 표시 비영리 동일 조건 변경 허락
Posted by wxzzsk
Develop/Web2011/06/27 17:37
참조 Url : http://blog.naver.com/q1q3q5?Redirect=Log&logNo=10104690457

.UnderLay
{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
   
    background-color:#000;
    -moz-opacity:0.5;
    opacity:.50;
    filter:alpha(opacity=50);
}

Div를 하나 만들어 적용하면 된다.
<div class="UnderLay" runat="server" id="UnderBack"></div>

위와 같이 만들어 .cs 파일에서 안래와 같이 이용한다.

UnderBack.Style[HtmlTextWriterStyle.Display] = "Block";
UnderBack.Style[HtmlTextWriterStyle.Display] = "none";

onclick 이벤트에 닫는 기능을 넣어준다.
<div onclick="layerClose()"></div>

<script type="text/javascript">
function layerClose() {
document.getElementById('<%=layerPop.ClientID%>').style.display = 'none';
}
</script>

저작자 표시 비영리 동일 조건 변경 허락
Posted by wxzzsk