home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l170 / 2.ddi / README.DOC < prev   
Encoding:
Text File  |  1991-01-29  |  16.9 KB  |  408 lines

  1.               "README.DOC" File
  2.          Release Notes for MICROSOFT(R) QuickBASIC
  3.          Version 4.0 for IBM(R) Personal Computers
  4.               and Compatibles
  5.  
  6.          (C) Copyright Microsoft Corporation, 1987
  7.  
  8. THIS FILE CONTAINS IMPORTANT INFORMATION CONCERNING VERSION 4.0    OF
  9. MICROSOFT(R) QuickBASIC. PLEASE    READ THE ENTIRE    FILE BEFORE USING
  10. QuickBASIC.
  11.  
  12. This file has seven parts:
  13.  
  14.      PART    CONTENTS
  15.  
  16.  
  17.     1    Information about additions and    changes    to the
  18.         Learning and Using Microsoft QuickBASIC    manual.
  19.  
  20.     2    Information about additions and    changes    to the
  21.         BASIC Language Reference manual
  22.  
  23.     3    Information about additions and    changes    to the
  24.         Programming in BASIC: Selected Topics manual
  25.  
  26.     4    Using your Mouse with QuickBASIC
  27.  
  28.     5    Using QuickBASIC with 3.5-inch floppy disks
  29.  
  30.     6    Supplementary information on mixed-language programming
  31.  
  32.     7    Using Btrieve with QuickBASIC
  33.  
  34. ===< Part 1: Changes for Learning and Using Microsoft QuickBASIC >===========
  35.  
  36. Page    Correction
  37. ----    ----------
  38. ---    Some keyboards have an extra set of DIRECTION (i.e. arrow) keys, in
  39.     addition to those on the numeric keypad. A bug in the ROM BIOS of
  40.     some machines with these keyboards can interfere with the QuickBASIC
  41.     editor.    Disk 3 (disk 2,    if you are using 3.5-inch disks) includes a
  42.     program, FIXSHIFT.COM, that fixes this bug. If you have    such a
  43.     keyboard, run this program by typing FIXSHIFT. If your machine does
  44.     not have the bug, FIXSHIFT displays a message telling you so.
  45.     Otherwise FIXSHIFT prompts you for the appropriate actions. FIXSHIFT
  46.     takes about 450    bytes of memory. Except    for the    BIOS bug, it has no
  47.     effect on other    programs you run.
  48.  
  49. ---    QuickBASIC Version 4.0 supports    Hercules (R) display adapters.
  50.     See the    entry for the SCREEN statement in Part 2, below.
  51.  
  52. xxii    If you install an IBM (R) Personal System/2 (TM) Video Graphics
  53.     Array display adapter (VGA) in a non-PS/2 machine, the VGA adapter
  54.     should be the only adapter in the system, and you should not use
  55.     mono modes (SCREEN 10) if you have a color monitor. Similarly, you
  56.     should not use color modes (SCREEN 1, 2, 7, 8, 9, 11, 12, 13) if you
  57.     have a monochrome monitor.
  58.  
  59. 11    Suggestions for    using QuickBASIC with a    single-floppy system:
  60.  
  61.         Disk 1
  62.         ======
  63.         QB.EXE
  64.         Your program source file
  65.         (Optional: Operating system files)
  66.         (Optional: QB.QLB)
  67.  
  68.         Disk 2
  69.         ======
  70.         BC.EXE
  71.         LINK.EXE
  72.         LIB.EXE
  73.         BRUN40.EXE
  74.         BRUN40.LIB
  75.  
  76.         Disk 3
  77.         ======
  78.         BCOM40.EXE
  79.  
  80.     When you make executable files and Quick libraries from    within the
  81.     environment, you have to swap the disks    in and out of your disk
  82.     drive to make the proper programs and libraries    available. When
  83.     specific files cannot be found on the currently    inserted disk,
  84.     you will see the prompt "Cannot find file <filename>." Before you
  85.     switch disks, type B: and press    ENTER. (You can    do this    because,
  86.     even though you    do not have a physical drive B,    DOS recognizes a
  87.     logical    drive B.) Insert the appropriate disk when prompted. Note
  88.     that when the linker prompts for a path, you must also include the
  89.     name of    the file for which it is searching.
  90.  
  91. 12    See Part 4 of this file    for additional information on installing
  92.     and using your Mouse with QuickBASIC.
  93.  
  94. --    There is a new option to LINK.EXE
  95.  
  96.     Option:     /NOE[XTDICTIONARY]
  97.  
  98.     If the linker suspects that a public symbol has    been redefined,    it
  99.     prompts    you to link again with the /NOE    option.    When you do so,    it
  100.     searches the individual    object files, rather than "dictionaries" it
  101.     has created, to    resolve    conflicts. For example,    when linking a
  102.     program    with NOEM.OBJ or NOCOM.OBJ, you    must use the /NOE option.
  103.  
  104. --    NOEM.OBJ is a supplied object file. It allows stand-alone executable
  105.     files compiled with the    /O option to be    substantially smaller when
  106.     run on machines    equipped with a    math coprocessor (8087 or 80287).
  107.     Note that programs linked with NOEM.OBJ    do not run on machines that
  108.     do not have a math coprocessor.    If all your stand-alone    executable
  109.     files are always run on    machines with coprocessors, you    can use    the
  110.     following method to change the library that contains floating-point
  111.     emulation routines (BCOM40.LIB)    to produce smaller executable files:
  112.  
  113.         LIB BCOM40.LIB -QB4EM.OBJ+NOEM.OBJ;
  114.  
  115.     This command replaces the emulator math    support    in the stand-alone
  116.     run-time library with support specific to the coprocessor.
  117.  
  118.     Alternatively, you can explicitly link NOEM.OBJ    from the command
  119.     line on    a case-by-case basis.  For example, to create PROG.EXE
  120.     using NOEM.OBJ,    compile    PROG.BAS with the /O option (either from
  121.     within QuickBASIC or from the command line), then link as follows:
  122.  
  123.         LINK PROG.OBJ+NOEM.OBJ/NOE;
  124.  
  125. 245    PTR86 is no longer supported. Use VARSEG and VARPTR instead.
  126.     Also, when used    with a communications device LOF now returns the
  127.     amount of space    remaining (in bytes) in    the output buffer. In
  128.     previous versions this was returned in the input buffer. Also, note
  129.     that a variable    and SUB    procedure could    have the same name in previous
  130.     versions. In Version 4.0, this causes a "duplicate definition" error.
  131.  
  132. ===< Part 2: Changes for BASIC Language    Reference >==========================
  133.  
  134. Page    Correction
  135. ----    ----------
  136. 18    The program FLPT.BAS, as printed in the    manual,    produces a run-time
  137.     error. The program has been corrected in the on-disk version.
  138.     See the    \SOURCE    directory on disk 3 (or    disk 2 if you are using
  139.     3.5 inch disks).
  140.  
  141. 84    The description    of CALL    ABSOLUTE says the file ABSOLUTE.OBJ must be
  142.     linked with the    program. This file is no longer    supplied. Link with
  143.     QB.LIB instead.
  144.  
  145. 122    String concatenation is    not permitted in a CONST statement.
  146.  
  147. 373    The SCREEN statement now includes mode 3 for Hercules display
  148.     adapters. The following    is a brief summary of screen mode 3.
  149.     See your Hercules documentation    for details.
  150.  
  151.         - QuickBASIC supports Hercules Graphics    Card, Graphics
  152.           Card Plus, InColor Card, and 100% compatibles
  153.  
  154.         - You must use a monochrome monitor
  155.  
  156.         - Hercules text    mode is    SCREEN 0; Hercules Graphics mode
  157.           is SCREEN 3.
  158.  
  159.         - You must load    the Hercules driver (QBHERC.COM) before    running
  160.           your program.    If the driver is not loaded, SCREEN 3 statement
  161.           gives    an "Illegal function call" error message. Type QBHERC
  162.           to load the driver.
  163.  
  164.         - Text dimensions are 80x25 (9x14 character box); bottom
  165.           2 scan lines of 25th row are not visible.
  166.  
  167.         - Resolution is    720x348    pixels,    monochrome.
  168.  
  169.         - Number of screen pages supported is 2.
  170.  
  171.         - The PALETTE statement    is not supported.
  172.  
  173.         - In order to use the Mouse, you must follow special
  174.           instructions for Hercules cards in the Microsoft Mouse
  175.           Programmer's Reference Guide. (This must be ordered
  176.           separately; it is not    supplied with either the QuickBASIC
  177.           or the Mouse package.)
  178.  
  179. 477        - The "Advanced feature unavailable" error message may occur
  180.           if you are using DOS Version 2.1 when    trying to use a    fea-
  181.           ture supported only in later versions    (i.e. file locking).
  182.  
  183. 484        - The "Duplicate definition" error message also    occurs if you
  184.           have a SUB or    FUNCTION procedure with    the same name as a
  185.           variable. In previous    versions, this did not cause an    error.
  186.  
  187. 513        - Message 2024 ("Name : symbol multiply defined, use /NOE")
  188.           should be numbered 2044
  189.  
  190. --------< New or Revised Error Messages    >--------------------------------
  191.  
  192. Error Number    Explanation
  193. ------------    -----------
  194.  
  195. L1003        New message: "/QUICKLIB, /EXEPACK incompatible"
  196.         You specified both options, /QUICKLIB and /EXEPACK, but
  197.         these two options cannot be used together.
  198.  
  199. L2024        Message    should read: "<name> : symbol already defined"
  200.         Explanation: The linker    has found a public-symbol
  201.         redefinition. Remove extra definition(s).
  202.  
  203. L2043        Message    should read: "Quick library support module missing"
  204.         You did    not specify, or    LINK could not find, the object
  205.         module or library required for creating    a Quick    library.
  206.         In the case of QuickBASIC, the library provided    is BQLB40.LIB
  207.  
  208. L4003        This message should be deleted from documentation.
  209.  
  210. U4157        LIB warning message: "Insufficient memory, extended
  211.         dictionary not created."
  212.  
  213. U4158        LIB warning message: "Internal error, extended dictionary
  214.         not created."
  215.         Both of    these LIB warnings just    indicate that LIB was unable
  216.         to create the extended dictionary. The library is still
  217.         valid, but the linker cannot take advantage of extended
  218.         dictionaries to    link faster.
  219.  
  220. ===< Part 3: Changes for Programming in    BASIC: Selected    Topics >============
  221.  
  222. 141        In the "Information Returned" column for the LOC function, the
  223.         description should read: "The amount of space remaining (in
  224.         bytes) in the output buffer". (Note that this is a change from
  225.         the behavior of    LOF in previous    versions of QuickBASIC).
  226.  
  227. ===< Part 4: Using your    Mouse with QuickBASIC >=============================
  228.  
  229. --------< New Mouse Driver for Use with    QuickBASIC >------------------------
  230.  
  231.     QuickBASIC Version 4.0 can be used with    any mouse that is 100%
  232.     compatible with    the Microsoft Mouse. However, you must use a
  233.     Microsoft Mouse    driver Version 6.00 or later. Earlier versions may
  234.     cause unpredictable behavior when used with QuickBASIC.    MOUSE.COM,
  235.     Version    6.11 is    supplied with QuickBASIC Version 4.0.
  236.  
  237.     Especially if you are writing programs that use    the mouse, you
  238.     should use the supplied    version    of the mouse driver when working in
  239.     QuickBASIC. Previous versions have included MOUSE.SYS, which is
  240.     installed by including the line    DEVICE=MOUSE.SYS in your CONFIG.SYS
  241.     file. This version of QuickBASIC includes MOUSE.COM, which is not
  242.     installed via CONFIG.SYS. To install MOUSE.COM,    just type MOUSE    at
  243.     the DOS    prompt.    To include MOUSE.COM automatically when    your machine
  244.     boots, make sure MOUSE.COM is in your search path, then    put the    line
  245.  
  246.         MOUSE
  247.  
  248.     in your    AUTOEXEC.BAT file. To free up memory, you can remove the
  249.     mouse driver at    any time by typing MOUSE OFF at    the DOS    prompt.
  250.     This will restore between 9K and 10.5K of memory with Version 6.11.
  251.  
  252. --------< Using    Mouse Function Calls from QuickBASIC Programs >------------
  253.  
  254.     If you are programming for the Microsoft Mouse,    you should obtain
  255.     the Microsoft Mouse Programmer's Reference Guide and the library
  256.     MOUSE.LIB that comes with it. (These are not included in QuickBASIC
  257.     or Mouse package and must be ordered separately). Most of the
  258.     information in the Mouse programmer's reference guide applies
  259.     directly to QuickBASIC Version 4. However, the following additional
  260.     restrictions must be observed:
  261.  
  262.     Certain    Mouse function calls (Functions    9 & 16)    require    you to set
  263.     up an integer array and    pass the address of the    array to the mouse
  264.     driver.    For previous versions, the only    restriction on this array
  265.     was that it had    to be $STATIC (the default array type).    In QuickBASIC
  266.     Version    4.0, however, the array    also must be in    a COMMON block if you
  267.     will be    making the Mouse function call from within the QuickBASIC
  268.     environment.  In addition, it is recommended that the support code
  269.     for the    Mouse call be in a Quick library or linked into    the
  270.     executable file    when making Mouse function calls from QuickBASIC.
  271.  
  272.     To produce a Quick library for using Mouse function calls from
  273.     within the QuickBASIC environment, use the following command line
  274.     (produces MOUSE.QLB):
  275.  
  276.         LINK MOUSE.LIB/QU,MOUSE.QLB,,BQLB40.LIB/NOE;
  277.  
  278.     An example from    PIANO.BAS (included with the Microsoft Mouse
  279.     Programmer's Reference) for using Mouse function call 9:
  280.         DEFINT A-Z
  281.         DECLARE    SUB MOUSE (M1, M2, M3, M4)
  282.         DIM Cursor(15, 1)
  283.         COMMON Cursor()         ' ensures array data is in DGROUP
  284.         .
  285.         .  (set    up Cursor() for    mouse cursor shape desired)
  286.         .
  287.         M1 = 9:    M2 = 6:    M3 = 0
  288.         CALL MOUSE(M1, M2, M3, VARPTR(Cursor(0,    0)))
  289.  
  290.     In addition to the above, note that Mouse function calls 21-23
  291.     require    dynamically allocated storage out of the home data segment.
  292.     The recommended    way to do this is to allocate space in a dynamic
  293.     string variable    based on the return value from function    call 21,
  294.     using the STRING$ or SPACE$ function, and using    VARPTR on this
  295.     string variable    just prior to calling Mouse function call 22 or    23.
  296.  
  297. ===< Part 5: Using QuickBASIC with 3.5-inch Floppy Disks >=============
  298.  
  299.     If you have    two 3.5-inch floppy-disk drives
  300.  
  301.     Copy the files from the    distribution disks to three other disks,
  302.     as follows:
  303.  
  304.         Disk 1:    All files from distribution disk 1, plus all BRUN40
  305.         and BQLB files appearing on distribution disk 2
  306.  
  307.         Disk 2:    BCOM40.LIB, BC.EXE, LINK.EXE, LIB.EXE
  308.  
  309.         Disk 3:    BASIC source files, Quick libraries, and QB.QLB
  310.  
  311.     Most of    the time you can just use disks    1 and 3, with disk 1 in
  312.     drive A    and disk 3 in drive B. When you    make a Quick library or
  313.     an executable file to run from DOS, you    will see the prompt:
  314.  
  315.         Cannot find file <filename>
  316.  
  317.     Insert disk 2 in drive A and press ENTER. If the program requires
  318.     a Quick    library, make sure both    the Quick library and the corresond-
  319.     ing stand-alone    (.LIB) library are on the disk in drive    B.
  320.  
  321.     If you have    only a single 3.5-inch floppy disk drive
  322.  
  323.     Prepare    disks 1, 2, and    3 as with a 2-drive system. However, when
  324.     you see    the prompt "Cannot find file <filename>", type B: and press
  325.     ENTER before inserting the proper disk.    (You can do this because,
  326.     even though you    do not have a physical drive B,    DOS recognizes a
  327.     logical    drive B.) Insert the appropriate disk when prompted. Note
  328.     that when the linker prompts for a path, you must also include the
  329.     name of    the file for which it is searching.
  330.  
  331. ===< Part 6: Supplementary Information on Mixed-Language Programming >======
  332.  
  333. --------< Linking from within QuickC or    with QCL >--------------------------
  334.  
  335.     Microsoft QuickC and the QCL command both set the /NOI linker
  336.     by default. Therefore, you should not link from    within QuickC, or
  337.     with QCL, when your program contains modules written in    a case-
  338.     insensitive language such as BASIC. Use    LINK to    link your program
  339.     from the command line.
  340.  
  341. --------< Pascal and Fortran Modules in    QuickBASIC Programs >---------------
  342.  
  343.     Modules    compiled with Microsoft    Pascal or Fortran can be linked    with
  344.     BASIC programs,    as described in    the Microsoft Mixed-Language
  345.     Programming Guide. They    can also be incorporated in Quick libraries.
  346.     However, QuickBASIC programs containing    code compiled with Microsoft
  347.     Pascal must allocate at    least 2K near-heap space for Pascal. This can
  348.     be done    by using the DIM statement to allocate a static    array of 2K or
  349.     greater    in the NMALLOC named common block, for example,    as follows:
  350.  
  351.         DIM name%(2048)
  352.         COMMON SHARED /NMALLOC/    name%()
  353.  
  354.     The Pascal runtime assumes it always has at least 2K of    near-heap
  355.     space available. If the    Pascal code cannot allocate the    required
  356.     space, QuickBASIC may crash. This applies to Pascal code in Quick
  357.     libraries as well as Pascal code linked    into executable    files. The
  358.     situation is similar for Fortran I/O, which also requires near
  359.     buffer space, and which    can be provided    by the same means as the
  360.     Pascal near malloc space.
  361.  
  362. --------< STATIC Array Allocation >---------------------------------------
  363.  
  364.     If you are writing assembly-language modules for use in    QuickBASIC
  365.     programs, see Section 2.3.3, "Variable Storage Allocation," in the
  366.     BASIC Language Reference. Assembly-language code should    not assume
  367.     data is    in a particular    segment. To avoid problems, pass data using
  368.     the SEG    or CALLS keywords, or use FAR pointers.    Alternatively, you
  369.     can declare all    arrays dynamic (still using far    pointers) since
  370.     dynamic    arrays are handled identically by BC and within    QuickBASIC.
  371.  
  372. --------< Quick    Libraries with Leading Zeros in    the First Code Segment >--
  373.  
  374.     A Quick    library    containing leading zeros in the    first CODE segment
  375.     is invalid, causing the    message "Error in loading file <name> -
  376.     Invalid    format" when you try to load it in QuickBASIC. For example,
  377.     this can occur if an assembly-language routine puts data that is
  378.     initialized to zero in the first CODE segment, and it is subsequently
  379.     listed first on    the LINK command line when you make a Quick library.
  380.     If you have this problem, do either of the following:
  381.     (1) link with a    BASIC module first on the LINK command line, or
  382.     (2) make sure that, in whatever    module comes first on the LINK
  383.     command    line, the first    code segment starts with a non-zero byte.
  384.  
  385. ===< Part 7: Using Btrieve with    QuickBASIC >=========================
  386.  
  387.     If you use Btrieve with    QuickBASIC, you    must make a small change to
  388.     your programs for QuickBASIC Version 4.0. Currently your programs
  389.     contain    a statement that obtains the address of    the field buffer for
  390.     an open    file. For example:
  391.  
  392.     OPEN "NUL" AS #1
  393.     FIELD #1, 20 AS    CITY$, 10 AS STATE$
  394.     FCB.ADDR% = VARPTR(#1)                'This statement obtains
  395.                          the address
  396.  
  397.     In QuickBASIC Version 4.0, you should change the indicated statement
  398.     to return the address of the first variable in your field buffer
  399.     minus a    constant, as follows:
  400.  
  401.     OPEN "NUL" AS #1
  402.     FIELD #1, 20 AS    CITY$, 10 AS STATE$
  403.     FCB.ADDR% = SADD(CITY$)    - 188            'CITY$ is the first field
  404.                          buffer    variable
  405.  
  406.     Your programs should function correctly    with Btrieve with this change.
  407.  
  408.