See Also: Time and Date Functions
The DateGetMillisecond function returns the Millisecond component of the given DateTime variable, dtVar.
DateGetMillisecond( {dtVar} )
Where:
{dtVar} is a value of type DateTime
Procedure TestDateGetMillisecond
DateTime dtVar
//Get the current local date and time
Move (CurrentDateTime()) To dtVar
Showln "The Millisecond of " dtVar " is: " (DateGetMillisecond(dtVar))
End_Procedure