Quote Originally Posted by Doogle View Post
Perhaps I don't understand the question but isn't it as simple as:
Code:
lngStart = GetTickCount()

<do some work>

lngEnd = GetTickCount()
Elapsed= lngEnd - lngStart
so if lngStart was 12345 and lngEnd was 23456 the elapsed time (Milliseconds) would be 11111
I will try that but I think this stop watch code is what I'm looking for.