home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l180 / 1.ddi / README.TXT < prev   
Encoding:
Text File  |  1989-02-07  |  5.4 KB  |  131 lines

  1.                         "README.TXT" File
  2.              Notes for QuickBASIC Toolbox Companion Disks
  3.                     (c)1989 Microsoft Press
  4.  
  5. This file consists of four parts:
  6.  
  7.      PART   CONTENTS
  8.  
  9.       1     Introduction
  10.       2     Contents of the Companion Disks
  11.       3     Instructions for using the Companion Disks
  12.       4     Special instructions for mixed-language files
  13.  
  14.  
  15. ===< Part 1: Introduction >==========================================
  16.  
  17.  
  18. This disk contains all the source-code and support files for the
  19. QuickBASIC Programmer's Toolbox book. It is very important that you
  20. read the introductions to Part II and Part III of the book before
  21. attempting to use these programs because certain programs have special
  22. requirements such as a .MAK file or a Quick Library file.
  23.  
  24. All programs on the disks are tested and are assumed to be error-free.
  25. However, should you encounter a problem, please contact:
  26.  
  27.     Microsoft Press
  28.     16011 NE 36th Way
  29.     Box 97017
  30.     Redmond, WA 98073-9717
  31.     Attn: QuickBasic Toolbox Editor
  32.  
  33.     (No phone calls, please.)
  34.  
  35.  
  36. ===< Part 2: Contents of the Companion Disks >======================
  37.  
  38.     README   TXT     EDIT     BAS      QBTREE   BAS      MOUSSUBS MAK
  39.                      ERROR    BAS      QCAL     BAS      MOUSTCRS MAK
  40.     Q        BAT     FIGETPUT BAS      QCALMATH BAS      OBJECT   MAK
  41.     MIXED    LIB     FILEINFO BAS      RANDOMS  BAS      QBFMT    MAK
  42.     MIXED    QLB     FRACTION BAS      STDOUT   BAS      QBTREE   MAK
  43.     MIXEDC   QLB     GAMES    BAS      STRINGS  BAS      QCAL     MAK
  44.                      HEX2BIN  BAS      TRIANGLE BAS      TRIANGLE MAK
  45.     ATTRIB   BAS     IMAGEARY BAS      WINDOWS  BAS      WINDOWS  MAK
  46.     BIN2HEX  BAS     INTRODEM BAS      WORDCOUN BAS
  47.     BIOSCALL BAS     JUSTIFY  BAS                        CASEMAP  ASM
  48.     BITS     BAS     KEYS     BAS      BIN2HEX  MAK      MOUSE    ASM
  49.     CALENDAR BAS     LOOK     BAS      CIPHER   MAK      CTOOLS1  C
  50.     CARTESIA BAS     MONTH    BAS      COLORS   MAK      CTOOLS2  C
  51.     CDEMO1   BAS     MOUSGCRS BAS      COMPLEX  MAK
  52.     CDEMO2   BAS     MOUSSUBS BAS      EDIT     MAK      CASEMAP  HEX
  53.     CIPHER   BAS     MOUSTCRS BAS      HEX2BIN  MAK      INTRPT   HEX
  54.     COLORS   BAS     OBJECT   BAS      JUSTIFY  MAK      MOUSE    HEX
  55.     COMPLEX  BAS     PARSE    BAS      LOOK     MAK
  56.     DOLLARS  BAS     PROBSTAT BAS      MONTH    MAK
  57.     DOSCALLS BAS     QBFMT    BAS      MOUSGCRS MAK
  58.  
  59.  
  60. ===< Part 3: Instructions for using the Companion Disks >===========
  61.  
  62. Making backup copies:
  63.  
  64.     If you have not already done so, immediately make backup copies
  65.     of these disks using the DISKCOPY command.  Store the originals
  66.     in a safe place and use only the copies.
  67.  
  68. If you are using a hard disk:
  69.  
  70.     To get started, create a new subdirectory on your hard disk and
  71.     copy all files from the Companion Disks into it.  Select
  72.     a name for this directory that is easy for you to remember.
  73.     For example, to create a subdirectory named QBTOOLS on hard disk
  74.     drive C: you would type:
  75.  
  76.     MD C:\QBTOOLS
  77.  
  78.     Continuing with this example, you would type the following
  79.     command to copy all files from the companion disk:
  80.  
  81.     COPY A:*.* C:\QBTOOLS
  82.  
  83.     (If you received two Companion Disks, then use the COPY command
  84.     a second time to copy the files from the second Companion Disk
  85.     to the hard disk.)
  86.  
  87.     To load files from this new directory into QuickBASIC, start
  88.     QuickBASIC and select Open Program from the File menu.  Type
  89.     C:\QBTOOLS\*.BAS in response to the File Name prompt.  The
  90.     complete list of .BAS files is then displayed for your selection.
  91.  
  92.  
  93. If you are using floppy disks:
  94.  
  95.     You may load the files into QuickBASIC directly from the
  96.     Companion Disks as required, or you can copy all appropriate
  97.     files to a working floppy for developing programs.  For example,
  98.     to copy QCAL.BAS and associated files to a working floppy you
  99.     should copy QCAL.BAS, QCALMATH.BAS, and QCAL.MAK to your working
  100.     disk.  In general, if a program file has an associated .MAK
  101.     file, copy the main program file, all the files listed in the
  102.     .MAK file, and the .MAK file itself.
  103.  
  104.  
  105. ===< Part 4: Special instructions for mixed-language files >==========
  106.  
  107.  
  108. Two files listed in the book and included on the Companion Disks,
  109. CDEMO1.BAS and CDEMO2.BAS, require the presence of MLIBCE.LIB, a
  110. QuickC library file created when you install QuickC on your system.
  111. You need MLIBCE.LIB before you can compile CDEMO1.BAS and CDEMO2.BAS
  112. into stand-alone executable files. If you do not own Microsoft QuickC,
  113. you will not be able to compile these files. However, a special Quick
  114. Library file, MIXEDC.QLB, is included on the Companion Disks to let
  115. you run CDEMO1.BAS and CDEMO2.BAS within the QuickBASIC environment.
  116. To do this, load QuickBASIC using the following command line:
  117.  
  118.     QB /L MIXEDC.QLB
  119.  
  120.  
  121. As an added bonus, the Companion Disks contain the file INTRODEM.BAS,
  122. which demonstrates some highlights of the various toolboxes presented
  123. in the book--it is highly recommended that you run this program first
  124. to get an idea of how useful and robust the toolboxes can be!
  125.  
  126. NOTE: INTRODEM.BAS also requires that you load MIXEDC.QLB with
  127. QuickBASIC using the above syntax line. As with CDEMO1.BAS and
  128. CDEMO2.BAS, you cannot create a stand-alone executable file unless
  129. you have Microsoft QuickC installed in your system.
  130.  
  131.