cMonth( ) Function
Description:
| |
The cMonth() function returns the month as a character string,
eg. "January", "February", etc., for the Julian date nDate. |
|
Syntax:
Parameters:
| |
numeric: nDate |
A Julian date. |
| |
numeric: retval |
The month as a string for the Julian date nDate. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
local retval
retval = cMonth(jdate()) // jdate() returns the julian date for today
println("The current month is " + retval )
|
|