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

  1. ********************
  2.  
  3. FUNCTION Remainy
  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(CTOD("12/31/" + SUBSTR(DTOS(_date), 3, 2)) - _date)
  14.  
  15. * End of File
  16.