%PB_COMPILETIME numeric equate  

Purpose

Helps to determine the date/time of compilation.

Remarks

Each time you compile your program, this equate is filled with the current date and time of the compilation in PowerTime binary format.  You can use the PowerTIME Class to convert it to a text equivalent for use in your application.

Example

LOCAL Built AS IPowerTime

LET Built = CLASS "PowerTime"

Built.FileTime = %PB_COMPILETIME

PRINT Built.DateString

PRINT Built.TimeString