I am trying to display a stopwatch to the user.
The moment the user pushes the record button and want to display in a label the time elapsed in format "hh:mm:ss:ms" and see the time running.
I assume one has to create a Timer Object and set it to enabled when the button is pressed and then in...
Watch.Start
...
Watch.Stop("Result A")
...
Watch.Stop("Result B")
...
Watch.Stop("Result C")
'Static code module Watch
Sub Process_Globals
Dim mStart As Long
Dim mEnd As Long
End Sub
public Sub Start
mStart = DateTime.Now
End Sub
public Sub Stop(title As String)
mEnd =...
Hi good day, i'm making a personalized stopwatch, but this have a delay.
I made a test, i start the stopwatch of the w10 app at the same time of my app in the phone. In sixty seconds of the w10 app, the app of the phone have a delay of two seconds, why does this happen and how can i solve it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.