home *** CD-ROM | disk | FTP | other *** search
- * ------------------------------------------------------------------
- * SLINBOXT.prg - draws a single line box at the top of the screen
- * ------------------------------------------------------------------
- * define MSG as a str <55 chars before entering this routine
- SET COLOR TO 7/0
- @ 1,12 SAY "┌───────────────────────────────────────────────────────┐"
- @ 2,12 SAY "│"
- @ 2,68 SAY "│"
- @ 3,12 SAY "└───────────────────────────────────────────────────────┘"
- set color to 15/0
- @ 2,(80-len(msg))/2 say msg
- set color to 7/0
- RETURN