Get time difference without time() (solved) [INFO]
- Posted by aku at inbox.as Mar 24, 2001
- 427 views
for info only: I now get the replacement for time(): global function timer() if platform() = 2 then return (c_func(define_c_func(open_dll("kernel32.dll"), "GetTickCount", {}, C_LONG), {})/1000) else return time() end if end function I got it from a VB mailing list. It has 0.001 second accuracy, you can use it if you want.