home *** CD-ROM | disk | FTP | other *** search
- ' **************************************************************************
-
- ' You can register this directly thru Compuserve, type GO SWREG,
- ' the Registration Shareware Database, the fee is 10.00. you can
- ' search by title, keywords or my ID#.
-
- ' Title: DRFONT 1.0
- ' Keywords: QB QBX FONTS ROEPENACK
- ' ID# 888
-
- ' As soon as I have been notified by compuserve of your
- ' registration you will recieve the full version of DRFONT 1.0
- ' that includes: Quick Library, Object Module, Library Module.
-
- ' Registered users can contact me with any Questions and are
- ' are also notified of any new versions, add-ons, upgrades of
- ' DRFONT.
-
- ' **************************************************************************
-
- ' These fixed fonts are for CGA, EGA, VGA in text Screen Mode.
-
- ' Make sure DRFONT.BI is included into your program, it contains all
- ' the font(s) information.
-
- ' You can insert the .BI file contents directly into your program
- ' instead of using the '$include, doing so will allow you to see
- ' the names of the fonts.
-
- ' Make sure DRFONT.FNT, DRFONT.BI, QB, QBX.BI is in the current directory.
- ' If not, give a path of location.
-
-
-
- '$INCLUDE: 'DRFONT.BI'
- '$INCLUDE: 'e:\qb45\QB.BI'
- '*--> Change to QBX.BI for QBX, PDS 7.x
-
- CLS : SCREEN 0
-
- PRINT "=============================== FONT DEMO ================================="
- PRINT " "
- PRINT " For a small registration fee of $10.00 I will send you the .LIB"
- PRINT " and .OBJ file for use with your programs, just tell me what size"
- PRINT " disk to send ( 5 1/4 - 3 1/2 ), module type ( QB45, QBX-PDS 7.1)"
- PRINT " and I'll get it to you right away!, First class!"
- PRINT " "
- PRINT " BONUS: You'll get a lot more fonts than this!"
- PRINT " "
- PRINT " Make check or money order payable to Dawn Roepenack"
- PRINT " "
- PRINT " Send to:"
- PRINT " Dawn Roepenack (DRFONT)"
- PRINT " 3760 Secor Road"
- PRINT " Venice, FL. 34293"
- PRINT " "
- PRINT "==========================================================================="
- PRINT " ------- Font Availible ------"
- PRINT " "
- PRINT " Computer Font Courior Font Helvetica Font"
- PRINT " Letter Font OldEnglish Font OutLine Font"
- PRINT " Times Roman Font Script Font Super Script Font"
- PRINT " Standerd Font"
-
-
- '*-> Where loading font numbers 1 thru 10 as declared in CONST w/names
-
- FOR Font% = 1 TO 10
- DRLoadFont Font%
- SLEEP (2)
- NEXT Font%
-
- END
-
- 'DRLoadFont ComputerFont% ------> 1
- 'DRLoadFont CouriorFont% ------> 2
- 'DRLoadFont HelveticaFont% ------> 3
- 'DRLoadFont LetterFont% ------> 4
- 'DRLoadFont OldEnglishFont% ------> 5
- 'DRLoadFont OutLineFont% ------> 6
- 'DRLoadFont TimesRomanFont% ------> 7
- 'DRLoadFont ScriptFont% ------> 8
- 'DRLoadFont SuperScriptFont% ------> 9
- 'DRLoadFont StanderdFont% ------> 10
-
-