how to calculate the processing time for some operation..

izza_azhar

Member
Joined
Mar 1, 2006
Messages
17
Programming Experience
Beginner
Hye all,
i want to calculate the proccessing time for 1 function.
for example once user click a button, it will capture the current time until finish time to the some operation.
for example:

Private Sub btnTest_Click(..)
<current start time>
.....
.....
<current finish time>

time take = <current start time> - <current finish time>

End Sub

thanks~~
 
Back
Top