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

  1. ********************
  2.  
  3. FUNCTION Percent
  4.  
  5.    PARAMETERS _pertop, _perbot
  6.  
  7.    * This shows the percentage of _pertop into _perbot
  8.  
  9.    IF PCOUNT() != 2
  10.       RETURN("")
  11.    ELSEIF _perbot = 0
  12.       RETURN("")
  13.    ENDIF
  14.  
  15.    IF TYPE("_perbot") = "U" .OR. TYPE("_perbot") = "U"
  16.       RETURN("")
  17.    ENDIF
  18.  
  19.    RETURN(STRTRAN(TRANSFORM((_pertop/_perbot)*100, "#############.##%")," ", ""))
  20.  
  21. * End of File
  22.