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

  1. ********************
  2.  
  3. FUNCTION Center
  4.  
  5.    PARAMETERS _temp, _therow
  6.  
  7.    * Yield the number for a potential column screen position that
  8.    * would center the given variable and at what position on the
  9.    * screen would be considered mid-point,
  10.  
  11.    IF PCOUNT() = 1
  12.       _therow = 40
  13.    ENDIF
  14.  
  15.    RETURN(_therow - (LEN(_temp)/2))
  16.  
  17. * End of File
  18.