home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Upperlower
-
- PARAMETERS _upla
-
- * Take the parameter string a uppercase the first
- * letter, lowercasing all other letters
-
- IF PCOUNT() != 1
- RETURN("")
- ENDIF
- RETURN(UPPER(SUBSTR(_upla, 1, 1)) + LOWER(SUBSTR(_upla,2)))
-
- * End of File
-