home *** CD-ROM | disk | FTP | other *** search
- ****************************************************************
- * * 08/13/92 SETBORD.PRG 21:34:46 *
- ****************************************************************
- * * Author's Name: J Long *
- * * *
- * * Description: *
- * * Illustrates usage of SET BORDER command *
- * * *
- ****************************************************************
- CLEAR
-
- CLEAR ALL
- DEFINE WINDOW Wind1 FROM 2,2 TO 30,70
- ACTIVATE WINDOW Wind1
- SET BORDER TO "*"
- @ 1,0 TO 10,38 && Draw a box
- SET BORDER TO "A","B","C","D","E","F","G","H"
- @ 12,0 TO 22,38 && Draw a box
- SET BORDER TO PANEL, DOUBLE
- @ 1,40 TO 10,78 && Draw a box
- SET BORDER TO 205,205,179,179,213,184,212,190, 178
- DEFINE WINDOW Wind2 FROM 8,25 TO 20,65
- @ 12,40 TO 22,78 && Draw a box
- SET BORDER TO DOUBLE
- ACTIVATE WINDOW Wind2
- @ 2,2 TO 10,10 && Draw a box inside of the window
- WAIT WINDOW
- CLEAR ALL
-