VFP7.0 SP1
Where can I put a function for formating a field in a report using the report writer?
I want to use this function...
SET CENTURY OFF
CLEAR
? Longdate({^1998-02-16}) && Displays Monday, February 16, 98
SET CENTURY ON
? Longdate({^1998-02-16}) && Displays Monday, February 16, 1998
*** LongDate ***
FUNCTION longdate
PARAMETERS gdDate
RETURN CDOW(gdDate) + ', ' + MDY(gdDate)
TIA - Wayne
Where can I put a function for formating a field in a report using the report writer?
I want to use this function...
SET CENTURY OFF
CLEAR
? Longdate({^1998-02-16}) && Displays Monday, February 16, 98
SET CENTURY ON
? Longdate({^1998-02-16}) && Displays Monday, February 16, 1998
*** LongDate ***
FUNCTION longdate
PARAMETERS gdDate
RETURN CDOW(gdDate) + ', ' + MDY(gdDate)
TIA - Wayne