ElapsedMilliseconds() returns negative value
Posted: Sun Aug 07, 2005 12:04 am
I noticed that ElapsedMilliseconds() returns negative value in OSX but not on my PC.
Is it a negative value on purpose or a type/sign problem?
I assume it returns a positive int on Linux and AmigaOS platforms.
Is it a negative value on purpose or a type/sign problem?
Code: Select all
For i = 1 To 100
Delay(100)
Debug Str(i)+" "+Str(ElapsedMilliseconds())
Next