home *** CD-ROM | disk | FTP | other *** search
- REM $INCLUDE: 'fastgraf.bi'
-
- DEFINT A-Z
-
- OldMode = FGgetmode
- FGsetmode 16
- FGinitw
- FGsetworld 0.0, 6.39, 0.0, 3.49
- FGsetsizew 0.21
-
- FGsetcolor 15
- FGlocate 0, 26
- FGtext "Software characters - font 1", 28
-
- FGsetcolor 10
- FGmovew 0.0, 3.1
- FGswchar "ABCDEFGHIJKLMNOPQRSTUVWXYZ",26, -1
- FGmovew 0.0, 2.8
- FGswchar "abcdefghijklmnopqrstuvwxyz",26, -1
- FGmovew 0.0, 2.5
- FGswchar "0123456789", 10, -1
- FGmovew 0.0, 2.2
- FGswchar "!" + CHR$(34) + "#$%&'()*+,-./:;<=>?[]^`{|}~", 29, -1
-
- FGsetcolor 15
- FGlocate 12, 26
- FGtext "Software characters - font 2", 28
-
- FGsetcolor 10
- FGmovew 0.0, 1.4
- FGswchar "\ABCDEFGHIJKLMNOPRSTUWXYZ", 25, -1
- FGmovew 0.0, 1.1
- FGswchar "\abcdefghijklmnoprstuwxyz", 25, -1
- FGmovew 0.0, 0.4
- FGswchar "\012345678#$%&()*+/<=>?[]{}", 27, -1
- FGwaitkey
-
- FGsetmode OldMode
- FGreset
-
- END