home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing: 21.16 Ampm()
- 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 Ampm( cTime )
- if val(cTime) < 12
- cTime += " am"
- elseif val(cTime) = 12
- cTime += " pm"
- else
- cTime := str(val(cTime) - 12, 2) + substr(cTime, 3) + " pm"
- endif
- return cTime
-
- // end of file CHP2116.PRG
-