home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
11-05.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-09-30
|
353b
|
25 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
NewMode = FGbestmode(320,200,1)
IF NewMode < 19 THEN
PRINT "This program requires a 256-color graphics mode."
STOP
END IF
OldMode = FGgetmode
FGsetmode NewMode
FGsetcolor 9
FGtext "text", 4
FGwaitkey
FGtransfer 0, 31, 0, 7, 4, 15, 0, 0
FGwaitkey
FGsetmode OldMode
FGreset
END