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

  1. ********************
  2.  
  3. FUNCTION Upperlower
  4.  
  5.    PARAMETERS _upla
  6.  
  7.    * Take the parameter string a uppercase the first
  8.    * letter, lowercasing all other letters
  9.  
  10.    IF PCOUNT() != 1
  11.       RETURN("")
  12.    ENDIF
  13.    RETURN(UPPER(SUBSTR(_upla, 1, 1)) + LOWER(SUBSTR(_upla,2)))
  14.  
  15. * End of File
  16.  
  17.