K타이머란..
한개의 파일로 컴퓨터를 예약 종료하는 프로그램입니다.

사용방법

원하는 시간을 선택하신후 시작을 눌러주십시오.

특징

종료 현황을 캡쳐해서 c:\lastwindows.bmp 로 저장이 되기때문에
종료된 상황을 확인할수 있습니다.

스크린샷

사용자 삽입 이미지

다운로드

라이센스

KTimer는 Freeware 입니다.
회사, 집, 관공서, 학교 등 공간 및 시간에 제약없이 마음대로 쓰셔도 상관없습니다.

'다 운 로 드' 카테고리의 다른 글

오늘 날짜로 폴더 생성하는 프로그램  (0) 2008.02.19
Downloader Pro 1.9 사용하기  (0) 2008.02.19
HTML2BMP  (0) 2008.02.19
색상 추출기  (0) 2008.02.19
KIN, 즐 생성기 ^^;  (0) 2008.02.19
[WithBanner v 1.0] 상품 이미지 배너 제작기  (0) 2008.02.19
캠순이  (0) 2008.02.19
KMAIL - 메일  (0) 2008.02.19
Posted by 알 수 없는 사용자
,

http://oxtag.com/html/ex/popupTimer.htm


<SCRIPT LANGUAGE="JavaScript">
<!--
closetime = 5; // 팝업창이 열린 후 5초 후 닫기
function Start(URL, WIDTH, HEIGHT) {
 windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
 preview = window.open(URL, "preview", windowprops);
 if (closetime) setTimeout("preview.close();", closetime*1000);
}

function doPopup() {
 url = "http://daum.net";  // 팝업창의 주소
 width = 400;  // 윈도우의 가로크기
 height = 350; // 윈도우의 높이
 delay = 2;    // 몇초 후에 열리게 할것인가를 설정 합니다
 timer = setTimeout("Start(url, width, height)", delay*1000);
}

document.onLoad = doPopup();
// -->
</script>

Posted by 알 수 없는 사용자
,

http://oxtag.com/php/p/timer.php


<?
function php_timer(){
  static $arr_timer;
  if(!isset($arr_timer)){
  $arr_timer = explode(" ", microtime());
  }else{
    $arr_timer2 = explode(" ", microtime());
    $result = ($arr_timer2[1] - $arr_timer[1]) + ($arr_timer2[0] - $arr_timer[0]);
    $result = sprintf("%.4f",$result);
    return $result;
  }
  return false;
}

//----------------------------예제
print("초기화");
print php_timer().'<br>';
print("2초 쉽니다.");
sleep(2);
print php_timer().'<br>';
print("3초 쉽니다.");
sleep(3);
print php_timer().'<br>';
print("4초 쉽니다.");
sleep(4);
print php_timer().'<br>';
?>

Posted by 알 수 없는 사용자
,