-
Put it up on a homepage paul, also if you want to get exact values, use querryperformance counter instead of timer:
Code:
Private Declare Function QueryPerformanceCounter Lib "kernel32" (lpPerformanceCount As Currency) As Long
Private Declare Function QueryPerformanceFrequency Lib "kernel32" (lpFrequency As Currency) As Long
QueryPerformanceCounter start
'Test code go here
QueryPerformanceCounter Finish
QueryPerformanceFrequency freq
Dealy = CDbl(Finish - start) / CDbl(freq)
-
What's "freq" in the last post???
will this help over GetTickCount (enough to use)
[Edited by Paul282 on 06-02-2000 at 10:56 AM]