home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Mess_cent
-
- PARAMETERS _a1, _a2, _a3
-
- PRIVATE _d, _e, _f
-
- * _a1 is the string
- * _a2 is the line's length
- * _a3 is the character to center the message with
- * _d is the length of _a
- * _e is the length of the line minus half of the string's length
- * _f is the total length
-
- IF PCOUNT() = 1
- _a2 = 80
- _a3 = " "
- ELSEIF PCOUNT() = 2
- _a3 = " "
- ENDIF
-
- IF !EMPTY(_a3)
- _a1 = " " + _a1 + " "
- ENDIF
-
- _a2 = INT(_a2 / 2)
-
- _d = LEN(_a1)
- _e = INT(_a2 - _d / 2)
- _f = (2 * _a2) - _d - _e
-
- RETURN( REPLICATE(_a3, _e) + _a1 + REPLICATE(_a3, _f) )
-
- * End of File