home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST280.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  356 b   |  17 lines

  1. ********************
  2.  
  3. FUNCTION Pastiny
  4.  
  5.    PARAMETERS _date
  6.  
  7.    * _date is either the date entered or the current system
  8.    * date and the function will return the number of remaining
  9.    * days in the year
  10.  
  11.    _date = IF((TYPE("_date") != "D"), DATE(), _date)
  12.  
  13.    RETURN(_date - CTOD("01/01/" + SUBSTR(DTOS(_date), 3, 2)))
  14.  
  15. * End of File
  16.  
  17.