Code: Select all
StartTimer(0)
For n=1 To 100000
StartTimer(n)
If n=20000 Or n=40000 Or n=60000 Or n=80000 Or n=100000 Then DebugPrint(GetTimer(0))
Next
DebugPrint("done")
1598
8105
19074
34303
54059
done
Is this supposed to be this way?
I did this test since I am making an Audio Organizer which has files that need to be double-clicked. To check the double-click, I am thinking of starting a timer each time for each file, which means that when using it to look through thousands of files, there could be quite a lot of Timers existing, as I didn't plan on stopping them, but I guess I will stop them after all.