Jump to content

stopwatch - time difference


gcue
 Share

Recommended Posts

hello..

im trying to do a stopwatch script that will show the current time when you press start

and read the current time from when you press stop, then id like to have it calculate the time difference

i know about timerinit and timerdiff but i dont want to display that type of count-id like to show a realtime clock instead

any ideas?

AdlibEnable("Update_Time", 1000)

func start()
$time = GUICtrlCreateLabel(@HOUR & ":" & @MIN & ":" & @SEC, 10, 58)
IniWrite($INI, @MON & "/" & @MDAY & "/" & @YEAR, GUICtrlRead($task) & "_START", @HOUR & ":" & @MIN & ":" & @SEC)
endfunc

Func Stop_Time()
IniWrite($INI, @MON & "/" & @MDAY & "/" & @YEAR, GUICtrlRead($task) & "_STOP", @HOUR & ":" & @MIN & ":" & @SEC)
;here is where i would like to calculate the duration
EndFunc

Func Update_Time()
GUICtrlSetData($time, @HOUR & ":" & @MIN & ":" & @SEC)
EndFunc
Edited by gcue
Link to comment
Share on other sites

  • Moderators

gcue,

Try looking at _TicksToTime in the help file - then you can use TimerInit and TimerDiff.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I use this in one of my scripts:

_TicksToTime(Int(TimerDiff($runtimeinit)), $runtimeHour, $runtimeMins, $runtimeSecs)
Local $sruntime = $runtime ; save current time to be able to test and avoid flicker..
$runtime = StringFormat("%02i:%02i:%02i", $runtimeHour, $runtimeMins, $runtimeSecs)
If $sruntime <> $runtime Then GUICtrlSetData($runtimecounter, $runtime)
Link to comment
Share on other sites

Like this:

#include <Date.au3>

Global $runtimeinit = TimerInit()
Global $runtimeHour, $runtimeMins, $runtimeSecs, $runtime, $sruntime

AdlibEnable("Update_Time")

While 1
    Sleep(20)
WEnd

Func Update_Time()
    _TicksToTime(Int(TimerDiff($runtimeinit)), $runtimeHour, $runtimeMins, $runtimeSecs)
    Local $sruntime = $runtime ; save current time to be able to test and avoid flicker..
    $runtime = StringFormat("%02i:%02i:%02i", $runtimeHour, $runtimeMins, $runtimeSecs)
    If $sruntime <> $runtime Then ConsoleWrite($runtime & @CRLF)
EndFunc   ;==>Update_Time
Edited by KaFu
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...