home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / msdos / animutil / fastgfx / fg303d / exbas.arj / FGDOC / EXAMPLES / BASIC / 07-05.BAS < prev    next >
Encoding:
BASIC Source File  |  1993-09-30  |  306 b   |  25 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 16
  7.  
  8. FGsetcolor 14
  9. FGtext "yellow", 6
  10.  
  11. FGsetcolor 10
  12. FGtext " green", 6
  13.  
  14. FGsetcolor 7
  15. FGrect 0, 127, 336, 349
  16. FGsetcolor 12
  17. FGlocate 24, 0
  18. FGtext " Press any key. ", 16
  19. FGwaitkey
  20.  
  21. FGsetmode OldMode
  22. FGreset
  23.  
  24. END
  25.