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?, thanks in advance
This is the code
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?, thanks in advance
This is the code
B4X:
Sub Process_Globals
Dim Timer1 As Timer
End Sub
Sub Globals
Dim lblTime As Label
Dim Time As Double
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Start")
Timer1.Initialize("Timer1", 100)
Timer1.Enabled = False
Time = 0
End Sub
Sub Timer1_Tick
Time = Time + 0.1
lblTime.Text = Round2(Time, 2)
End Sub
Last edited: