cMonth( ) Function

Description:
  The cMonth() function returns the month as a character string, eg. "January", "February", etc., for the Julian date nDate.  

Syntax:
  retval = cMonth( nDate )

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 )

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved