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

  1. ********************
  2.  
  3. FUNCTION Wom
  4.  
  5.    PARAMETERS _tdate
  6.  
  7.    _tdate = IF( (TYPE("_tdate") != "D"), DATE(), _tdate)
  8.  
  9.    RETURN(Wholenum(INT(DAY(_tdate) / 7 + ;
  10.           IF(DAY(_tdate) % 7 <= DOW(_tdate), 1, 2))))
  11.  
  12. * End of File
  13.  
  14.