home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l196 / 1.ddi / README.DOC < prev    next >
Encoding:
Text File  |  1990-06-24  |  34.9 KB  |  940 lines

  1.                 README.DOC File
  2.  
  3.      Release Notes for Microsoft (R) BASIC Professional Development System
  4.  
  5.                  Version 7.10
  6.  
  7.           (C) Copyright Microsoft Corporation, 1990
  8.  
  9.          Product Serial Number: 00-007-2710-10006511
  10.  
  11.  
  12.     This document contains release notes for version 7.10 of the Microsoft (R)
  13.     BASIC Professional Development System for MS-DOS (R) and the Microsoft
  14.     Operating System/2 (MS(R) OS/2). The information in this document is more
  15.     up-to-date than that in the manuals.
  16.  
  17.     This version of BASIC contains the "BASIC Language Reference" and
  18.     "Programmer's Guide" published with the previous release of the product,
  19.     version 7.0. The information in those manuals is current with this
  20.     release except where noted in this document. The "Getting Started" manual
  21.     explains the features new to version 7.1 in Chapter 1, "New Features."
  22.  
  23.     Microsoft revises its languages documentation at the time of reprinting,
  24.     so some of the information in this online file may already be included in
  25.     your manuals.
  26.  
  27.     =======================================================================
  28.     Contents
  29.     =======================================================================
  30.  
  31.     Part    Description
  32.     ----    -----------
  33.  
  34.     1        Notes and Tips
  35.  
  36.     2        Notes for "Microsoft BASIC Language Reference"
  37.  
  38.     3        Notes for "Microsoft BASIC Programmer's Guide"
  39.  
  40.  
  41.     =======================================================================
  42.     Part 1: Notes and Tips
  43.     =======================================================================
  44.  
  45.     Quick Library Compatibility Between Versions
  46.     --------------------------------------------
  47.     Quick libraries created with version 7.1 that use the LBOUND or UBOUND
  48.     functions or the ERASE statement on a dynamic array whose elements include
  49.     a record containing a static array will not work with version 7.0 of QBX.
  50.  
  51.     Compatibility with Novell Netware
  52.     -----------------------------------
  53.     If you have a peripheral (such as a mouse) that uses Interrupt Request
  54.     Level (IRQ) 3, and your system is part of a network using Novell (R) Netware
  55.     version 2.15 or earlier, your system may hang when you load QBX, PWB, or
  56.     CodeView. As a temporary solution, set your peripheral to use another
  57.     interrupt. For more information, contact your Novell Netware dealer.
  58.  
  59.     PWB State Files / Help Under OS/2
  60.     ---------------------------------
  61.     Do not directly edit PWB state files (such as CURRENT.STS). To change editor
  62.     settings in PWB, choose Editor Settings from the Options menu. For more
  63.     information, see the section "Customizing the Environment" in Chapter 4 of
  64.     "Getting Started."
  65.  
  66.     MSHELP.DLL must be located in the path set by LIBPATH in your CONFIG.SYS
  67.     file in order to use Help in PWB under OS/2.
  68.  
  69.     NMK Utility
  70.     -----------
  71.     The NMK utility (NMK.COM) should not be used within PWB. To get help on
  72.     NMK, type QH NMK from the command line.
  73.  
  74.     ILINK and BIND Utilities
  75.     ------------------------
  76.     Documentation for the ILINK and BIND utilities is included online for
  77.     compatibility with Microsoft C. These utilities are not included with
  78.     Microsoft BASIC and are not supported by BASIC.
  79.  
  80.     I/O within LPRINT, PRINT #, PRINT # USING, WRITE, and WRITE USING
  81.     -----------------------------------------------------------------
  82.     If you use any of these output statements with an argument that is,
  83.     itself, an input/output statement, the output will go to the
  84.     console screen rather than the expected file or device. To avoid this
  85.     problem, use a variable to get input, and use that variable as the
  86.     argument to the statement that will perform the output. In the following
  87.     example output will always go to the screen:
  88.  
  89.     OPEN "Test1.dat" FOR INPUT AS #1
  90.     OPEN "Test2.dat" FOR OUTPUT as #2
  91.     PRINT #2, INPUT$(10, #1)
  92.  
  93.     The following rewritten example will send output to the proper place:
  94.  
  95.     OPEN "Test1.dat" FOR INPUT AS #1
  96.     OPEN "Test2.dat" FOR OUTPUT AS #1
  97.     TEXT$ = INPUT$(10, #1)
  98.     PRINT #2, TEXT$
  99.  
  100.     Output is also sent to the screen if you use an argument that is a
  101.     user-defined function that also performs input/output. You must not
  102.     use user-defined functions that perform I/O as arguments to any of the
  103.     preceding output statements.
  104.  
  105.     Debugging Custom Run-Time Modules with CodeView
  106.     ------------------------------------------------
  107.     You can debug custom run-time modules with CodeView only in protected mode
  108.     (CVP.EXE). To do this you must prepare the run-time module as follows:
  109.  
  110.     1. Compile the source files using the CodeView options (/Zi or /Zd).
  111.  
  112.     2. Set the LINK environment variable to include the /CO (CodeView) option.
  113.  
  114.     3. Run the BUILDRTM utility to create the custom run-time module.
  115.  
  116.     After you run BUILDRTM, you should set the LINK environment variable back to
  117.     its original setting.
  118.  
  119.     References to Version Numbers in Filenames
  120.     ------------------------------------------
  121.     The references to the filenames for the BASIC run-time libraries and run-
  122.     time modules in the "BASIC Language Reference" and "Programmer's Guide"
  123.     include the 7.0 version number, e.g. BRT70ENR.LIB. Change these to include
  124.     the 7.1 version number, e.g. BRT71ENR.LIB.
  125.  
  126.  
  127.     =======================================================================
  128.     Part 2: Notes for "Microsoft BASIC Language Reference"
  129.     =======================================================================
  130.  
  131.     Page    Section\Note
  132.     ----    ------------
  133.  
  134.     31-32    CALL (BASIC Procedures)
  135.         -----------------------
  136.         In version 7.1, BASIC supports the use of the BYVAL keyword
  137.         in CALL, DECLARE, SUB, and FUNCTION statements for BASIC
  138.         procedures. You can use BYVAL to pass parameters by value
  139.         rather than by reference (the default). It is no longer
  140.         necessary to enclose parameters in parentheses to emulate
  141.         passing by value. For more information and an example of using
  142.         BYVAL in BASIC procedures, see the online Help for the DECLARE
  143.         statement (BASIC procedures). For specifics on using BYVAL with
  144.         CALL, see the online Help for the CALL statement (BASIC
  145.         procedures).
  146.  
  147.         Change the explanation of the example to state that the SUB
  148.         procedure prints a message on the 24th line of the display.
  149.  
  150.      37     CHAIN
  151.         -----
  152.         Under DOS 2.1, CHAIN will not work unless filespec$ provides a
  153.         path. Also under DOS 2.1, if the run-time module is in the
  154.         root directory, the root directory must be listed in the PATH
  155.         environment variable.
  156.  
  157.      40     CHDIR
  158.         -----
  159.         Refer to the online Help for CHDIR for a more appropriate
  160.         example of CHDIR and MKDIR usage.
  161.  
  162.      61     COMMAND$
  163.         --------
  164.         The fifth line from the top of the page is missing a pair of
  165.         parentheses. The line should read:
  166.  
  167.         SUB Comline (NumArgs, Args$(), MaxArgs) STATIC
  168.  
  169.      68     CONST
  170.         -----
  171.         You cannot use ASCII 01 and 02 in string constants if you are
  172.         going to compile to an executable program. The compiler
  173.         (BC.EXE) uses ASCII 1 and 2 internally to represent
  174.         End-of-Statement and End-of-Line, respectively. You can,
  175.         however, still use 1 and 2 within the QBX environment.
  176.  
  177.      84     DATA
  178.         ----
  179.         You cannot use ASCII 01 and 02 in data strings if
  180.         you are going to compile to an executable program.
  181.         See the preceding note for CONST.
  182.  
  183.      88     DECLARE (BASIC Procedures)
  184.         --------------------------
  185.         In version 7.1, BASIC supports the use of the BYVAL keyword
  186.         in CALL, DECLARE, SUB, and FUNCTION statements for BASIC
  187.         procedures. See the online Help for this statement for more
  188.         information.
  189.  
  190.      93     DECLARE (Non-BASIC Procedures)
  191.         ------------------------------
  192.         Reword the paragraph following the note to read:
  193.  
  194.         Be careful when using the SEG keyword or when passing parameters
  195.         by near reference (no keyword), because BASIC may move variables
  196.         in memory before the called routine begins execution. Anything
  197.         in a CALL statement's argument list that causes memory movement
  198.         may create problems. You can safely pass variables using SEG or
  199.         near reference if the CALL statement's argument list contains
  200.         only simple variables or arithmetic expressions. SEG cannot be
  201.         used to pass arrays.
  202.  
  203.     116     END
  204.         ---
  205.         Syntax 2, END [n%], accepts a range of integers from -32,768
  206.         through 32,767, inclusive.
  207.  
  208.      144    FUNCTION
  209.         --------
  210.         In version 7.1, BASIC supports the use of the BYVAL keyword
  211.         in CALL, DECLARE, SUB, and FUNCTION statements for BASIC
  212.         procedures. See the entry for page 31 for more information.
  213.  
  214.      147    GET (File I/O)
  215.         --------------
  216.         The argument for record number should be "recordnumber&" since
  217.         it accepts a long-integer value.
  218.  
  219.     151     GET (Graphics)
  220.         --------------
  221.         Screen modes 3 and 4 should be added to the table at the top of
  222.         the page. Both modes use one bit per pixel per plane and have
  223.         one plane.
  224.  
  225.     177     KEY (Assignment)
  226.         ----------------
  227.         The KEY n%, stringexpression$ syntax can also be used to
  228.         create user-defined keys. Refer to the information on page 180
  229.         for specific details on how this is accomplished.
  230.  
  231.         The description for the KEY ON statement in the table in the
  232.         middle of the page should mention that only the first five
  233.         characters of the soft-key string value are displayed for
  234.         function key F10.
  235.  
  236.     180     KEY (Event Trapping)
  237.         --------------------
  238.         The correct value for the Ctrl+Alt key combination is &H0C
  239.         (12 decimal) for non-extended keyboards and &H8C for extended
  240.         keyboards.
  241.  
  242.     181     Keyboard Scan Codes
  243.         -------------------
  244.         Add the following to the Keyboard Scan Code chart:
  245.  
  246.         Key    Code
  247.         ---    ----
  248.         F11     133
  249.         F12     134
  250.  
  251.     200     LOCK...UNLOCK
  252.         -------------
  253.         The paragraph after the warning incorrectly states that BASIC
  254.         may generate the error "Bad record number" if you attempt to
  255.         access a file that is locked. BASIC will generate only the
  256.         "Permission denied" error message in this case.
  257.  
  258.     238-239    OPEN COM
  259.         --------
  260.         Under OS/2, specifying DS0 to ignore the state of the Data Set
  261.         Ready (DSR) line does not work properly. In this case, you
  262.         will have to either not ignore the DSR line or you will have
  263.         to jumper the DSR line to an active high-signal line. Refer to
  264.         serial port information that specifically pertains to your
  265.         hardware, and perform any modifications at your own risk.
  266.  
  267.         The range for the parity argument should include the value PE.
  268.         Setting parity to PE enables parity error checking.
  269.  
  270.     261     PLAY (Music)
  271.         ------------
  272.         The remarks should note that the PLAY statement generates an
  273.         "Illegal Function Call" error if you attempt to use the
  274.         enharmonic notes C-, B+, E+ or F-.
  275.  
  276.     275     PRINT USING
  277.         -----------
  278.         The syntax for the PRINT USING statement should be as follows:
  279.  
  280.         PRINT USING formatstring$; expressionlist [;]
  281.  
  282.         The PRINT USING statement does not use print zones. You cannot
  283.         replace the optional semicolon with a comma.
  284.  
  285.  
  286.     280     PUT Statement (File I/O)
  287.         ------------------------
  288.         The argument for record number should be "recordnumber&" since
  289.         it accepts a long-integer value.
  290.  
  291.         The introduction to the example near the bottom of the page
  292.         incorrectly states that "the following two statements write
  293.         15 bytes to file number 1:" The example actually writes 17
  294.         bytes to file number 1, since the first two bytes store
  295.         the length of the string in BASIC.
  296.  
  297.     333     SETMEM Function
  298.         ---------------
  299.         The example shows using the C malloc() and free() functions to
  300.         allocate and free memory. These will take the allocated memory
  301.         away from the BASIC program until the program terminates. To be
  302.         able to reallocate memory using SETMEM after a C procedure, you
  303.         must use halloc() and hfree().
  304.  
  305.         The corrected C code for the SETMEM example is as follows:
  306.  
  307.         void far cfunc(bytes)
  308.         int bytes;
  309.         {
  310.             char *halloc();
  311.             char *workspace;
  312.  
  313.             /* Allocate working memory using amount BASIC freed. */
  314.             workspace=halloc((unsigned) bytes, 1);
  315.  
  316.             /* Working space would be used here. */
  317.  
  318.             /* Free memory before returning to BASIC */
  319.             hfree(workspace);
  320.         }
  321.  
  322.     345     SOUND
  323.         -----
  324.         The duration argument accepts any positive single-precision,
  325.         floating-point value between 0 and 65,535, inclusive.
  326.  
  327.     368-375    StringAddress, StringAssign, StringLength, and StringRelease
  328.         ------------------------------------------------------------
  329.         Sample MASM code for these entries includes lines like
  330.         the following:
  331.  
  332.         extrn StringAddress: proc far
  333.         call StringAddress
  334.  
  335.         In all cases, only "far" should appear after the colon
  336.         in the extrn directive. In addition, all extrn
  337.         directives should appear outside of any .code or .data
  338.         segment directives. For example, the extrn directives
  339.         in the sample code on page 369 should appear as
  340.         follows:
  341.  
  342.         .model    medium, basic    ; Use same model as BASIC.
  343.  
  344.         ; Define external (BASIC library) procedures.
  345.         extrn    StringAddress: far
  346.         extrn    StringLength: far
  347.  
  348.         .code
  349.  
  350.         ; Define procedure with one-word argument.
  351.         ...
  352.  
  353.     376     SUB
  354.         ---
  355.         In version 7.1, BASIC supports the use of the BYVAL keyword
  356.         in CALL, DECLARE, SUB, and FUNCTION statements for BASIC
  357.         procedures. See the online Help for this statement for more
  358.         information.
  359.  
  360.     409     WIDTH
  361.         -----
  362.         The Remarks state that the WIDTH #filenumber% form of the
  363.         statement may be used with a file. This form of    the statement
  364.         may only be used with a device opened as a file with the OPEN
  365.         statement.
  366.  
  367.     425     DATESERIAL
  368.         ----------
  369.         Change the paragraph that begins "For each of the three
  370.         arguments..." to read as follows:
  371.  
  372.         When converting specific dates, the ranges shown above for each
  373.         of the arguments should be used. However, when using expressions
  374.         to calculate date serial numbers for relative dates (e.g., a
  375.         week from 10 Dec 89) each of the three arguments can be any
  376.         valid integer as long as the resulting date serial number
  377.         is between -53,688 and 65,380, inclusive. Date serial
  378.         numbers outside this range generate the error message "Illegal
  379.         function call."
  380.  
  381.     506     Matrix Math Toolbox
  382.         -------------------
  383.         The first sentence of the Remarks for the MatSEqn FUNCTION
  384.         should read:
  385.  
  386.         The MatSEQNtype% procedure solves a system of linear equations
  387.         contained in a one-dimensional vector and in a square matrix;...
  388.  
  389.         The sentence beginning "The second matrix,..." should read:
  390.  
  391.         The second matrix is used to enter the vector constants for
  392.         that system of simultaneous equations.
  393.  
  394.     518     Fonts Toolbox
  395.         -------------
  396.         Change the first sentence in the second paragraph to read as
  397.         follows:
  398.  
  399.         Nine font files are supplied:  Courier fonts in COURA.FON,
  400.         COURB.FON, and COURE.FON, Helv fonts in HELVA.FON,
  401.         HELVB.FON, and HELVE.FON, and Tms Rmn fonts in TMSRA.FON,
  402.         TMSRB.FON and TMSRE.FON.
  403.  
  404.     523     Fonts Toolbox
  405.         -------------
  406.         Add the following documentation for the GTextWindow before
  407.         existing documentation for GetTotalFonts:
  408.  
  409.         GTextWindow SUB
  410.  
  411.         Action        Retains the logical coordinates of window
  412.                 boundaries. (See note below.)
  413.  
  414.         Syntax        GTextWindow (x1, y1, x2, y2, Scrn%)
  415.  
  416.         Remarks     The GTextWindow procedure uses the following
  417.                 arguments:
  418.  
  419.                 Argument        Description
  420.                 --------        -----------
  421.  
  422.                    x1        Integer containing the minimum
  423.                         X value  (logical coordinate).
  424.  
  425.                    y1        Integer containing the minimum
  426.                         Y value.
  427.  
  428.                    x2        Integer containing the maximum
  429.                         X value.
  430.  
  431.                    y2        Integer containing the maximum
  432.                         Y value.
  433.  
  434.                   Scrn%        Integer containing either cTRUE
  435.                         (used with WINDOW SCREEN statement
  436.                         to show window Y values increase
  437.                         top to bottom) or cFALSE (used
  438.                         with WINDOW statement to show
  439.                         window Y values increase bottom to
  440.                         top )
  441.  
  442.                 This procedure should be called after defining
  443.                 VIEW and WINDOW and prior to calling OutGText.
  444.  
  445.                 To clear the current window, call this routine
  446.                 with X1=X2 or Y1=Y2.
  447.  
  448.                 Note: The first call to OutGtext will work without
  449.                 calling GTextWindow, however all subsequent calls
  450.                 treat the coordinates as pixel coordinates of the
  451.                 window; therefore, to retain the logical
  452.                 coordinates call GTextWindow prior to calling
  453.                 OutGText.
  454.  
  455.         See Also    See OutGText statement for more information.
  456.  
  457.     524     Fonts Toolbox
  458.         -------------
  459.         Change the last line of the LoadFont% FUNCTION section to read:
  460.  
  461.         l% = LoadFont%("n1/n3/n6")
  462.  
  463.     549     User Interface Toolbox
  464.         ----------------------
  465.  
  466.         Change "CommandKeySet" in the paragraph following the table to
  467.         "ShortCutKeySet."
  468.  
  469.     550     User Interface Toolbox
  470.         ----------------------
  471.         Add the following line after the COMMON SHARED statement for
  472.         GloStorage:
  473.  
  474.         COMMON SHARED /uitools/GloWindowStack() AS INTEGER
  475.  
  476.     586     User Interface Toolbox
  477.         ----------------------
  478.         The AttrBox SUB is incorrectly identified as being a procedure
  479.         in GENERAL.BAS. Actually, AttrBox is found in UIASM.OBJ.
  480.  
  481.     601     Keyboard Scan Codes and ASCII Character Codes
  482.         ---------------------------------------------
  483.  
  484.         Add the following to the table on page 601:
  485.  
  486.            |       |        |  ASCII or  |    ASCII or  |  ASCII or
  487.            |  Scan |  ASCII or    |  Extended  |    Extended  |  Extended
  488.         Key|  Code |  Extended    |  with SHIFT|    with CTRL |  with ALT
  489.         ---|-------|------------|------------|------------|------------
  490.            |Dec|Hex|Dec|Hex|Char|Dec|Hex|Char|Dec|Hex|Char|Dec|Hex|Char
  491.         ---|---|---|---|---|----|---|---|----|---|---|----|---|---|----
  492.         F11|133| 85|133| 85| NUL|135| 87| NUL|137| 89| NUL|139| 8B| NUL
  493.         F12|134| 86|134| 86| NUL|136| 88| NUL|138| 8A| NUL|140| 8C| NUL
  494.         ---------------------------------------------------------------
  495.  
  496.     606     BASIC Reserved Words
  497.         --------------------
  498.         Add PRESERVE to the list of BASIC reserved words.
  499.  
  500.     608-610    BASIC Compiler (BC)
  501.         -------------------
  502.         In version 7.1, the following options were added for the BASIC
  503.         Compiler:
  504.  
  505.         /? or /Help    Displays compiler syntax and options.
  506.  
  507.         /FBr[filename]    Generates a file containing restricted program
  508.                 symbol information for use with the Programmer's
  509.                 WorkBench Source Browser. This information file
  510.                 has the name specified by the filename argument.
  511.                 If no name is specified, it has the same name as
  512.                 the source file with an .SBR filename extension.
  513.                 The file contains information about the
  514.                 definitions and references to all global
  515.                 symbols.
  516.  
  517.         /FBx[filename]    Generates a file containing extended program
  518.                 symbol information for use with the Programmer's
  519.                 WorkBench Source Browser. This information file
  520.                 has the name specified by the filename argument.
  521.                 If no name is specified, it has the same name as
  522.                 the source file with an .SBR filename extension.
  523.                 The file contains information about the
  524.                 definitions and references to all global and
  525.                 local symbols.
  526.  
  527.         The information for the /Z option applies to PWB, as well as to
  528.         the M editor.
  529.  
  530.     611     BUILDRTM Utility
  531.         ----------------
  532.         The run-time argument to BUILDRTM should not include a path or
  533.         a file extension.
  534.  
  535.     620     NMAKE
  536.         -----
  537.         Change the description for the macrodefinitions argument to
  538.         the following:
  539.  
  540.         An optional field that lists macro definitions for NMAKE to
  541.         use. Macros can also be specified in the makefile. See the
  542.         "Macro Definitions" section for details.
  543.  
  544.     631     Table 4.1 Run-Time Error Codes
  545.         ------------------------------
  546.         Add run-time error 89, "Insufficient ISAM buffers," to
  547.         the table.
  548.  
  549.     639     Database needs repair
  550.         ---------------------
  551.         Change REPAIR.EXE to ISAMRPR.EXE.
  552.  
  553.     653     Illegal Function Call
  554.         ---------------------
  555.         This error may also occur if an error is trapped and corrected
  556.         by the user between BEGINTRANS and COMMITTRANS statements. For
  557.         example:
  558.  
  559.         ON ERROR GOTO TRAP
  560.         OPEN "A:\FOO.MDB" FOR ISAM ...
  561.         BEGINTRANS
  562.         ...
  563.           COMMITTRANS
  564.           PRINT "The TRANSACTION was SUCCESSFULLY committed"
  565.           ...
  566.         END
  567.         TRAP:
  568.         IF ERL = 10 and ERR = 71 THEN
  569.           INPUT "Hit any key after the DRIVE door is CLOSED...";a$
  570.           RESUME
  571.         END IF
  572.  
  573.         This example may cause an "Illegal function call" error on the
  574.         COMMITTRANS statement if the transaction is interrupted by a
  575.         "Disk not ready" error.
  576.  
  577.     656     Run-Time Error Message - Insufficient ISAM buffers
  578.         --------------------------------------------------
  579.         There are not enough buffers to handle ISAM file processing.
  580.         See the section "Estimating Minimum ISAM Buffer Values" in
  581.         Chapter 10 of the "Programmer's Guide" for more information.
  582.  
  583.         ERR code: 89
  584.  
  585.     665     Run-Time Error Message - Overflow
  586.         ----------------------------------
  587.         In the first list item, change "40 indices" to "28 indexes."
  588.         Remove the sentence that begins, "If there are 32 open
  589.         tables..." This limitation is not correct and does not cause an
  590.         Overflow error. See "Using Multiple Files: 'Relational'
  591.         Databases" in Chapter 10 of the "Programmer's Guide" for
  592.         information on open table limitations.
  593.  
  594.     684     Link error L1083 - Cannot open run file
  595.         ---------------------------------------
  596.         This error can also be caused by a read-only .EXE file of the
  597.         same name as specified for the run file. Link will not be able
  598.         to overwrite the read-only file.
  599.  
  600.     690     Link error L2044 - Symbol multiply defined
  601.         ------------------------------------------
  602.         This error may also appear in PWB when doing mixed-language
  603.         programming with C. The error results from the C start-up
  604.         code being linked in twice. To avoid the error, enter the
  605.         appropriate BASIC library (for example, BRT71ENR.LIB
  606.         for a program using the BASIC run-time, emulator math,
  607.         near strings, and running in real mode) in the Additional
  608.         libraries field of the Link Options dialog.
  609.  
  610.  
  611.     =======================================================================
  612.     Part 3: Notes for "Microsoft BASIC Programmer's Guide"
  613.     =======================================================================
  614.  
  615.     Page    Section/Note
  616.     ----    ------------
  617.  
  618.      41     Defining Procedures
  619.         -------------------
  620.         The DATA statement should be added to the list of statements
  621.         and expressions not allowed within a procedure.
  622.  
  623.      56     Passing Arguments by Value
  624.         --------------------------
  625.         This section describes how to emulate passing parameters
  626.         by value in BASIC procedures by enclosing the parameter in
  627.         parentheses. With version 7.1 you can define parameters
  628.         to pass by value using the BYVAL keyword in the DECLARE
  629.         statement for the procedure. For information on using BYVAL in
  630.         BASIC procedures, see the online Help for the DECLARE statement
  631.         (BASIC procedures).
  632.  
  633.      66     Preserving Values of Local Variables with STATIC
  634.         ------------------------------------------------
  635.         In the first example, a "Duplicate Definition" error will occur
  636.         if the procedure SubProg2 is called more than once. To avoid
  637.         this, rewrite the example as follows:
  638.  
  639.         SUB SubProg2
  640.             STATIC Array() AS INTEGER, FirstPassFlag%
  641.             IF FirstPassFlag% = 0 THEN
  642.             DIM Array(-5 TO 5, 1 TO 25) AS INTEGER
  643.             FirstPassFlag% = 1
  644.             END IF
  645.             ...
  646.         END SUB
  647.  
  648.      68     The Factorial Function
  649.         ----------------------
  650.         In the example declaration of the Factorial# procedure, delete
  651.         the STATIC keyword so the line appears as follows:
  652.  
  653.         FUNCTION Factorial# (N%)
  654.  
  655.     224     Presentation Graphics
  656.         ---------------------
  657.         Table 6.1 should indicate that the Presentation Graphics toolbox
  658.         can only be used in real mode.
  659.  
  660.     250-251    AxisType
  661.         --------
  662.         The table listing the elements of the AxisType structure
  663.         incorrectly lists the "Labelled" element. That element should
  664.         be referred to as "Labeled."
  665.  
  666.         The description for the TicFormat element should state that you
  667.         should set TicFormat to cNormFormat to display tick mark labels
  668.         in decimal format.
  669.  
  670.     319     ISAM Support
  671.         ------------
  672.         The Note on this page indicates that ISAM is not supported
  673.         under OS/2. With version 7.1 this restriction has been
  674.         removed.
  675.  
  676.     341     Restrictions on Indexing
  677.         ------------------------
  678.         Add the following to the end of the first paragraph:
  679.  
  680.         The maximum number of indexes per table is 28.
  681.  
  682.     344     Setting the Current Record by Position
  683.         --------------------------------------
  684.         Add the following just after the paragraph that begins,
  685.         "The effect of any of the MOVEdest statements...":
  686.  
  687.         If you trap errors while using either a MOVENEXT or
  688.         MOVEPREVIOUS ISAM statement, and an I/O error occurs (either
  689.         57 or 71) on an index that is not the NULL index, you must
  690.         resynchronize ISAM internal pointers before using another
  691.         MOVENEXT or MOVEPREVIOUS statement. Synchronization can be
  692.         done using any valid SETINDEX statement, either a MOVEFIRST or
  693.         MOVELAST statement, or any of the SEEKxx (SEEKEQ, SEEKGE,
  694.         SEEKGT) statements.
  695.  
  696.     345     A Typical ISAM Program
  697.         ----------------------
  698.         The command line used for invoking PROISAM for use with the
  699.         BOOKLOOK program (shown halfway down the page) is stated as
  700.         PROISAM /Ib:24. The efficiency of the ISAM has improved and
  701.         the program can now be run in 640K conventional memory, with
  702.         no expanded memory, with only 9 buffers: PROISAM /Ib:9. If you
  703.         have EMS available, you need not specify the /Ib option.
  704.  
  705.     376     Starting ISAM for Use in QBX - /Ie argument
  706.         -------------------------------------------
  707.         The explanation for the /Ie: option for the ISAM TSR states
  708.         that "...In practice, you only need to specify /Ie if your
  709.         program code (or a loaded Quick library) actually manages EMS
  710.         memory." Although this is true, there may be other times when
  711.         you want to reserve EMS for other uses. Having many ISAM
  712.         buffers improves the performance of ISAM, but during program
  713.         development ISAM performance may be less important than the
  714.         size of your program's source code. For example, your program
  715.         may only need 10-12 ISAM buffers to prevent an "Insufficient
  716.         ISAM buffers" error at run time. If you have 1.2 megabytes of
  717.         EMS available, you can use the /Ie: option to minimize the EMS
  718.         used by ISAM buffers, reserving the rest for program source
  719.         code. For example, if your program needs about 10 buffers, you
  720.         can invoke the ISAM TSR with /Ie:900. This will provide several
  721.         hundred K of EMS to be used for ISAM buffers. The rest will be
  722.         reserved for QBX (and your program source code). Note that
  723.         only program parts whose size is between 512 bytes and 16K are
  724.         placed in EMS by QBX. You can check the sizes of your
  725.         procedures and module-level code blocks by pressing F2 to see
  726.         the View menu's SUBs dialog box.
  727.  
  728.     380     Using ISAM with Compiled Programs
  729.         ---------------------------------
  730.         The note labeled Important at the bottom of the page no longer
  731.         applies in version 7.1 since you can specify additional options
  732.         from the Make EXE dialog box when compiling within QBX.
  733.  
  734.     393     The ISAMCVT Utility
  735.         -------------------
  736.         Add the following sentence just before the section entitled
  737.         "The Repair Utility":
  738.  
  739.         No EMS driver can be loaded when running ISAMCVT.
  740.  
  741.     394     Repair Utility
  742.         --------------
  743.         Replace the paragraph that begins, "When you use the ISAMREPR
  744.         utility..." with the following:
  745.  
  746.         The ISAMREPR utility requires an additional 32K within your
  747.         database to re-create the system indexes.  This adds a least
  748.         32K to the size of the database. Do not run the utility if
  749.         your disk does not have this amount of space available in the
  750.         current working directory. Also note that the maximum size of
  751.         a database is 128 megabytes. When you run the ISAMREPR
  752.         utility, adding 32K to the size of an extremely large database
  753.         may cause it to exceed the maximum allowed. ISAMREPR deletes
  754.         inconsistent records in tables, but does not compact after
  755.         doing so. Compacting a database is described in the next
  756.         section.
  757.  
  758.     490-497    String-Processing Routines
  759.         --------------------------
  760.         Sample MASM code in this section includes lines like
  761.         the following:
  762.  
  763.         extrn stringassign: proc far
  764.         call stringassign
  765.  
  766.         In all cases, only "far" should appear after the colon in the
  767.         extrn directive. In addition, all extrn directives should appear
  768.         outside of any .CODE or .DATA segment directives. For an
  769.         example, see the entry for pages 368-375 of the "BASIC Language
  770.         Reference."
  771.  
  772.     494        BASIC Calling MASM
  773.         ------------------
  774.         Change the first sentence in the paragraph following the
  775.         "Important" note to read as follows:
  776.  
  777.         This MASM code uses the .MODEL directive which establishes
  778.         compatible naming and calling conventions for BASIC, and
  779.         it also uses simplified segment directives.
  780.  
  781.         Change the third-from-last line of the example to read as
  782.         follows:
  783.  
  784.         C$ = AddString$(A$, LEN(A$), B$, LEN(B$))
  785.  
  786.     520     Language Changes for Protected Mode
  787.         -----------------------------------
  788.         Table 14.1 indicates that all of the ISAM statements and
  789.         functions are not supported in protected mode. With version
  790.         7.1 that restriction has been removed.
  791.  
  792.     539     Using Stub Files
  793.         ----------------
  794.         The third paragraph on this page states that stub files can be
  795.         used to create run-time modules. This is true for all stub files
  796.         except OVLDOS21.OBJ and NOEMS.OBJ, which cannot be built into
  797.         run-time modules. These stub files can be linked with programs
  798.         using run-time modules, however.
  799.  
  800.     558-560    Using BC Command Options
  801.         ------------------------
  802.         The first paragraph in this sections states that the slash (/)
  803.         and the dash (-) can be used interchangeably to specify BC
  804.         command-line options. This is true, but they cannot be
  805.         intermixed. You must use either all slashes or all dashes
  806.         in your command line.
  807.  
  808.         Add the following command options to the table: /?, /Help, /FBr,
  809.          /FBx. See the entry in this document for pages 608-610 of the
  810.         "BASIC Language Reference" for descriptions of these options.
  811.         The description of the /Z option applies to PWB, as well as to
  812.         the M editor.
  813.  
  814.         When using the /D option with dynamic arrays, it is possible
  815.         to produce incorrect results if you pass an array element to a
  816.         procedure that changes the value of the element index. For
  817.         example, the following works properly when compiled with all
  818.         options except /D:
  819.  
  820.         CALL SubProc(a(i),i)
  821.         PRINT a(i), i
  822.  
  823.         The following performs the same operations and works properly
  824.         with all compile options including /D.
  825.  
  826.         j=i
  827.         CALL SubProc(a(i),j)
  828.         PRINT a(i), j
  829.  
  830.     561     Using Floating-Point Options (/FPa and /FPi)
  831.         --------------------------------------------
  832.         The new CURRENCY data type is not currently supported in the
  833.         alternate math library.
  834.  
  835.     576     Options
  836.         -------
  837.         Replace /NOD with /NOE in the table at the top of the page.
  838.  
  839.     589     Valid LINK Options
  840.         ------------------
  841.         The /PACKCODE option can be abbreviated to /PACKC, not /PAC as
  842.         shown in the table.
  843.  
  844.     595     Ignoring Default Libraries (/NOD:filename)
  845.         ------------------------------------------
  846.         Add the following to the paragraph that begins, "In general,
  847.         higher-level languages..."
  848.  
  849.         For example, if you specify the /NOD option when linking a
  850.         protect-mode BASIC program, you must explicitly specify the
  851.         run-time library (BRT71xxP.LIB) and OS2.LIB in the libraries
  852.         field of the LINK command line.
  853.  
  854.     599     Specifying OS/2 Window Type
  855.         ---------------------------
  856.         You cannot use the /D compiler option together with /PM:VIO.
  857.  
  858.     611     Linking Stub Files
  859.         ------------------
  860.         The first paragraph on this page states that you can link stub
  861.         files with custom run-time modules. This is true for all stub
  862.         files except OVLDOS21.OBJ and NOEMS.OBJ. These stub files can be
  863.         linked with programs using run-time modules, however.
  864.  
  865.     624     Mouse, Menu, and Window Libraries
  866.         --------------------------------
  867.         If you rebuild toolbox Quick libraries, files should be
  868.         compiled with the /Ah option (allow dynamic arrays to be
  869.         greater than 64K) if you intend to use QBX with the /Ea option
  870.         (Put arrays into expanded memory).
  871.  
  872.         Also note that Table 19.1 applies to all toolbox files, not
  873.         just MOUSE.BAS, MENU.BAS, and WINDOW.BAS.
  874.  
  875.     625     Loading and Viewing Quick Libraries
  876.         -----------------------------------
  877.         QBX now requires that the BASIC source for any Quick library
  878.         be compiled using the /Fs (far string) compiler option.
  879.         Consequently, QBX will not permit you to load a Quick library
  880.         file that has the near string features of earlier versions of
  881.         QuickBASIC. If you encounter an "Invalid Format" error when
  882.         attempting to load an older Quick library file, you should
  883.         recompile the files using BC with the /Fs option.
  884.  
  885.         You may also encounter the "Invalid Format" error if you
  886.         invoke QBX with a /Ea option (put arrays into expanded memory)
  887.         and have not compiled the Quick library with /D (generate
  888.         debugging code) or /Ah (allow dynamic arrays of records,
  889.         fixed-length strings, and numeric data to be larger than 64K).
  890.  
  891.     636     Description Blocks
  892.         ------------------
  893.         The following information applies to the command component
  894.         of description blocks:
  895.  
  896.         The first character after a dependency line in a description
  897.         block must be a whitespace character, i.e., either a space or
  898.         a tab. An error occurs if only a carriage return is used on a
  899.         blank line.
  900.  
  901.     663     OBJECTS Directive
  902.         -----------------
  903.  
  904.         This section should note that you should not include the
  905.         OVLDOS21.OBJ or NOEMS.OBJ stub files in the list of filenames
  906.         after the OBJECTS directive.
  907.  
  908.     701     Elementary Data Types - String
  909.         ------------------------------
  910.         You cannot use ASCII 01 and 02 in strings constants if you
  911.         are going to compile to an executable program. The compiler
  912.         (BC.EXE) uses ASCII 1 and 2 internally to represent
  913.         End-of-Statement and End-of-Line, respectively. You can,
  914.         however, still use 1 and 2 within the QBX environment.
  915.  
  916.     702     Elementary Data Types - Numeric
  917.         -------------------------------
  918.         A math coprocessor (80x87) handles rounding of extremely small
  919.         numbers differently from the way numbers are rounded by the
  920.         BASIC emulator math package. Because of this difference, some
  921.         numbers that are properly displayed using a coprocessor are
  922.         rounded and displayed as zero when using emulator math. The
  923.         range of single-precision floating-point numbers that are
  924.         properly displayed as input, using the emulator math package,
  925.         is +/- 2.802597E-45. For double-precision floating-point
  926.         numbers, the range is +/- 4.94065645841247D-324.
  927.  
  928.         In Table B.1, the description for double-precision floating
  929.         point numbers should say that they are accurate to 15
  930.         digits. Also, the upper and lower ranges with or without
  931.         the alternate math library should be +/-1.79769313486231D308
  932.         rather than +/-1.797693134862315D308 for regular math and
  933.         +/-1.79769313486232D308 for alternate math.
  934.  
  935.     707     Data Types in ISAM Files
  936.         ------------------------
  937.         In Table B.2, the description for the DOUBLE data type
  938.         should list the upper and lower ranges as
  939.         +/-1.79769313486231D308 rather than +/-1.797693134862315D308.
  940.