home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
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
|
1993-09-30
|
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