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