Timer Ticks - Miliseconds

cmartins

Member
Licensed User
Longtime User
Hi everybody


I am using the timer to extrat elapsed time in milisecond. Using on my PC is OK

but when try it on the PPC I can receive on full seconds


Ex.


timer1.interval = 100
timer1.enable = true

startedTime = now

sub timer1_tick
label1.text = format((now - startedtime) / cTickperSecond,"N2")


In my computer

in 2 seconds:

0.10
0.20
0.30
.
.
.
.
.
1.90
2.00


in my PPC "GPS foston WinCE 6.0"

1.00
2.00


There is other library to give a complete time with miliseconds?


Regards


camilo
 
Top