No one got an answer ???

  • Thread starter Thread starter Big Al
  • Start date Start date
B

Big Al

Message origionaly sent on the 16th August 2004

StopWatch,
can I use this (On THe Same Form)to calculate how long a
query runs???????
 
hi Big Al,

Big said:
StopWatch,

Digital wristwatches are a great thing, hu?
can I use this (On THe Same Form)to calculate how long a
query runs???????

Declare Function GetTickCount Lib "kernel32" () As Long

Dim TC As Long
TC = GetTickCount
DoCmd.RunQuery ""
Debug.Print GetTickCount - TC

Gives the running time in miliseconds.

--> stefan <--
 
Thanks Stefan !!
-----Original Message-----
hi Big Al,



Digital wristwatches are a great thing, hu?


Declare Function GetTickCount Lib "kernel32" () As Long

Dim TC As Long
TC = GetTickCount
DoCmd.RunQuery ""
Debug.Print GetTickCount - TC

Gives the running time in miliseconds.

--> stefan <--
.
 
Back
Top