Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To convert an internal system date to its month, day, and year value, refer to OConv and TimeDate(). Also, Fmt().

Remarks

Code Block
/* Assigns the internal system value of the current date to the variable TODAY. */
TODAY = Date()
/* Assigns to WEEK_AGO the current date (internal format) minus 7 days. */
WEEK_AGO = Date() -7
* To display today's date.
Call Msg(@Window, "Today is ":Fmt(date(),"D"))