home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 21.13 Juld()
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- function Juld(dVar)
- LOCAL yy:=str(year(dVar),4) // Determine year
- LOCAL temp:=ctod("01/01/"+yy) // Build January first of year
- return (dVar-temp) // Subtract to return # of days
-
- // end of file CHP2113.PRG
-