C
cj
I need to get the time it took for a process to run. It should be less
than a second but may be up to 5 seconds.
I'm used to showing how many seconds something has taken by:
starttime = now()
..
..
finishtime = now()
label1.text = DateDiff(DateInterval.Second, starttime, finishtime)
but I don't think this will show me fractions of a second. How can I
get it to display fractions of a second?
than a second but may be up to 5 seconds.
I'm used to showing how many seconds something has taken by:
starttime = now()
..
..
finishtime = now()
label1.text = DateDiff(DateInterval.Second, starttime, finishtime)
but I don't think this will show me fractions of a second. How can I
get it to display fractions of a second?