home *** CD-ROM | disk | FTP | other *** search
- * ------------------------------------------------------------------
- * DLINBOXM.prg - draws a double line box at the middle of the screen
- * ------------------------------------------------------------------
- * define MSG as a str <55 chars before entering this routine
- SET COLOR TO 7/0
- @ 11,12 SAY "╔═══════════════════════════════════════════════════════╗"
- @ 12,12 SAY "║"
- @ 12,68 SAY "║"
- @ 13,12 SAY "╚═══════════════════════════════════════════════════════╝"
- set color to 15/0
- @12,(80-len(msg))/2 say msg
- set color to 7/0
- RETURN