IF TEST = 1
{
  ASSIGN MyTime = "{time}"
}

//[String expression] Converts the contents of the variable TO a time string.
//The variable must contain a numeric value representing an OLE automation 
//date/time. 

//An OLE automation date/time is a double-precision floating-point number that
//represents a date as the number of days before or after the base 
//date, midnight, 30 December 1899. The sign and integral part encode the date 
//as a positive or negative day displacement from 30 December 1899, and the 
//absolute value of the fractional part encodes the time of day as a fraction 
//of a day displacement from midnight.

//[Numeric expression] Converts the contents of the variable TO an OLE automation 
//date/time by parsing the string contents. The string contents must match 
//one of the Windows standard time formats like HH:mm:ss


//This example converts a time string into its OLE numeric equivilent
ASSIGN NumericTime = MyTime.astime

//This example converts a OLE numeric time to its string equivilent
ASSIGN StringTime = "{NumericTime.astime}"