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
/
07-09.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
|
411 b
|
29 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
FGsetmode 16
FGsetcolor 14
FGtext "yellow", 6
FGsetcolor 10
FGtext " green", 6
FGsetcolor 7
MinX = FGxconvert(0)
MaxX = FGxconvert(16) - 1
MinY = FGyconvert(24)
MaxY = FGyconvert(25) - 1
FGrect MinX, MaxX, MinY, MaxY
FGsetcolor 12
FGlocate 24, 0
FGtext " Press any key. ", 16
FGwaitkey
FGsetmode OldMode
FGreset
END