home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304D.ZIP;1
/
EXBAS.ARJ
/
FGDOC
/
EXAMPLES
/
BASIC
/
03-05.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1994-01-24
|
392 b
|
31 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldLines = FGgetlines
OldMode = FGgetmode
FGsetmode 3
FGcursor 0
FGsetcolor 15
FGtext "first line", 10
FGwaitkey
IF FGtestmode(16,0) THEN
FGsetlines 43
FGcursor 0
FGwaitkey
END IF
IF FGtestmode(17,0) THEN
FGsetlines 50
FGcursor 0
FGwaitkey
END IF
FGsetmode OldMode
FGsetlines OldLines
FGreset
END