home *** CD-ROM | disk | FTP | other *** search
/ PC Format 7 / Disk7.iso / ADDMEM / QBNOTES.DOC < prev   
Text File  |  1992-01-05  |  2KB  |  51 lines

  1.  
  2.  
  3.          SPECIAL NOTES FOR MICROSOFT QUICKBASIC(R) USERS
  4.          ============================================================
  5.  
  6.          When using ADDMEM.COM with QuickBASIC, there are several
  7.          things that you must know to achieve optimum use.  There are
  8.          also several things you need to know so you don't potentially
  9.          lock up your system.
  10.  
  11.  
  12.          THINGS YOU SHOULD DO
  13.          ====================
  14.  
  15.          When you initially load the editor, be sure to add the "/G"
  16.          command line option to your normal command line option(s).
  17.          An example would be:
  18.  
  19.               QB /G
  20.               QBX /G
  21.  
  22.          This option forces QuickBASIC to use direct screen writes
  23.          within the editor.  For some reason, ADDMEM inhibits the
  24.          automatic usage of this option.  If you don't use this
  25.          option, you will notice that the screen gets updated a little
  26.          slower.
  27.  
  28.  
  29.  
  30.          THINGS YOU SHOULD NOT DO
  31.          ========================
  32.  
  33.          Do not use the "/H" option when loading QuickBASIC, this causes
  34.          a video mode change which will cause ADDMEM to abort.
  35.  
  36.          The following BASIC commands should not be used while ADDMEM
  37.          is resident:
  38.  
  39.               WIDTH 40
  40.               WIDTH 80
  41.               PALETTE
  42.               SCREEN 2   (or anything above)
  43.  
  44.          "PALETTE" may or may not work on VGA systems.  Try it and see
  45.          if it works for your system.
  46.  
  47.          It is ALWAYS safe to use SCREEN to switch the "APAGE" and
  48.          "VPAGE" options, but do not attempt to switch into any other
  49.          video mode except mode 1.
  50.  
  51.