See Also: Time and Date Functions
The DateGetMonth function returns the Month component of the given DateTime variable, dtVar.
DateGetMonth( {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 Month of " dtVar " is: " (DateGetMonth(dtVar))
End_Procedure