home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Asciisum
-
- PARAMETERS _tstring
-
- IF EMPTY(PCOUNT())
- RETURN(0)
- ELSEIF TYPE("_tstring") != "C"
- RETURN(0)
- ENDIF
-
- PRIVATE _qaz, _ttot
-
- _ttot = 0
-
- FOR _qaz = 1 TO LEN(_tstring)
- _ttot = _ttot + ASC(SUBSTR(_tstring, _qaz, 1))
- NEXT
-
- RETURN(_ttot)
-
- * End of File