네트워커의 보안 티스토리

StopWatch.rev1.zip



lib 폴더로 만들어서 쓰거나 함수로 넣어서 써야할듯 include 해주거나 

lib 폴더에 넣으면 자동으로 참조하는 듯함



watch := StopWatch_New()

Gui,Font, s22, OCR A Extended

Gui, Add, Edit, Center ReadOnly vStopWatch_Display -VScroll x43 y242 w240 h40

GoSub, StopWatch_GUIUpdate


Gui, show

return


StopWatch_GUIUpdate:

GuiControl,,StopWatch_Display, % FormatTime(watch.GetCurrentTime()) ; 디스플레이 갱신


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

리셋:

watch.Reset()

SetTimer, StopWatch_GUIUpdate, Off

GoSub, StopWatch_GUIUpdate


스타트:

  watch.Start()

SetTimer, StopWatch_GUIUpdate, 10 ; 10ms 마다 업데이트

스탑:

watch.Stop()

SetTimer, StopWatch_GUIUpdate, Off

GoSub, StopWatch_GUIUpdate

return