home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exbas.arj / TEMP / 03-05.BAS < prev    next >
BASIC Source File  |  1995-01-20  |  392b  |  31 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldLines = FGgetlines
  6. OldMode = FGgetmode
  7. FGsetmode 3
  8. FGcursor 0
  9.  
  10. FGsetcolor 15
  11. FGtext "first line", 10
  12. FGwaitkey
  13.  
  14. IF FGtestmode(16,0) THEN
  15.    FGsetlines 43
  16.    FGcursor 0
  17.    FGwaitkey
  18. END IF
  19.  
  20. IF FGtestmode(17,0) THEN
  21.    FGsetlines 50
  22.    FGcursor 0
  23.    FGwaitkey
  24. END IF
  25.  
  26. FGsetmode OldMode
  27. FGsetlines OldLines
  28. FGreset
  29.  
  30. END
  31.