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

  1. ********************
  2.  
  3. FUNCTION Right_just
  4.  
  5.    PARAMETERS _a, _b
  6.  
  7.    * _a is the right justified string
  8.    * _b is the column to right justify to
  9.  
  10.    IF PCOUNT() = 1
  11.       _b = 79
  12.    ENDIF
  13.    RETURN(IF(LEN(_a) > _b, 0, _b - LEN(_a)))
  14.  
  15. * End of File
  16.