Is there any suggestion how to log the execution time of a loop?
For example I use the following code
...but it displays always 0 milliseconds even if the app freezes for a couple of seconds
For example I use the following code
B4X:
time1 = DateTime.now
Do while
...
Loop
time2 = DateTime.now
result= time2 - time1
toastmessageshow (result, false)
...but it displays always 0 milliseconds even if the app freezes for a couple of seconds