Subject Re: Spelled out date on form
From Mervyn Bick <invalid@invalid.invalid>
Date Fri, 24 Apr 2015 07:47:40 +0200
Newsgroups dbase.getting-started

On Fri, 24 Apr 2015 07:29:07 +0200, Ken Mayer  
<dbase@nospam.goldenstag.net> wrote:


> In the dUFLP, class DateEx.cc has many methods for dealing with dates.
>
> set proc to :dUFLP:DateEx.cc
> ? dateText( {04/23/2015} )
>
> (The dUFLP is a freeware library of code, see the dBASE Page below ...)

Um, it needs a little bit more than that.  dateText() is a method of the  
dateEx class.


set procedure to :duflp:DateEx.cc
oDate = new dateEx()

dDateEx = date()

? oDateEx.dateText(dDate)
? oDateEx.dateText2(dDate)
? oDateEx.dateText3(dDate)


Mervyn.