Milliseconds

4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next

version 6.0


Milliseconds Longint

ParameterTypeDescription
This command does not require any parameters
Function resultLongintNumber of milliseconds elasped
since the machine was started

Description

Milliseconds returns the number of milliseconds (1000th of a second) elapsed since the machine was started.

Example

The following code displays the "Chronometer" window for one minute:

   Open window (100;100;300;200;0;"Chronometer")
   $vhTimeStart:=Current time
   $vlTicksStart:=Tickcount
   $vrMillisecondsStart:=Milliseconds
   Repeat 
      GOTO XY (2;1)
      MESSAGE ("Time...........:"+String (Current time -$vhTimeStart))
      GOTO XY (2;3)
      MESSAGE ("Ticks..........:"+String (Tickcount -$vlTicksStart))
      GOTO XY (2;5)
      MESSAGE ("Milliseconds...:"+String (Milliseconds -$vrMillisecondsStart))
   Until ((Current time -$vhTimeStart)>=†00:01:00†)
   CLOSE WINDOW

See Also

Current time, Tickcount.


4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next