home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l190 / 4.ddi / README.DOC < prev    next >
Encoding:
Text File  |  1988-09-20  |  14.1 KB  |  341 lines

  1.             "README.DOC" File
  2.        Release Notes for MICROSOFT(R) QuickBASIC Version 4.5 for
  3.        IBM(R) Personal Computers and Compatibles
  4.  
  5.          (C) Copyright Microsoft Corporation, 1988
  6.  
  7. THIS FILE CONTAINS IMPORTANT INFORMATION CONCERNING VERSION 4.5    OF
  8. MICROSOFT(R) QuickBASIC. PLEASE    READ THE ENTIRE    FILE BEFORE USING
  9. QuickBASIC.
  10.  
  11. This file has seven parts:
  12.  
  13.   PART         CONTENTS
  14.  
  15.  
  16.   1         Information about additions and changes to    the
  17.          Learning to Use Microsoft QuickBASIC
  18.  
  19.   2         Information about additions and changes to    the
  20.          manual Programming    in BASIC
  21.  
  22.   3         Using your    Mouse with QuickBASIC
  23.  
  24.   4         Supplementary information on mixed-language programming
  25.  
  26.   5         Using Btrieve with    QuickBASIC
  27.  
  28.   6         Using the DOS 3.2 patch for math accuracy
  29.  
  30.   7         Miscellaneous information about using QuickBASIC
  31.  
  32. ===< Part 1: Learning to Use Microsoft QuickBASIC >
  33.  
  34. No entries yet for this    part
  35.  
  36. ===< Part 2: Programming in BASIC >
  37.  
  38. No entries yet for this    part
  39.  
  40. ===< Part 3: Using Your    Mouse with QuickBASIC >
  41.  
  42. --------------<    New Mouse Driver for Use with QuickBASIC >------------------
  43.  
  44.     QuickBASIC Version 4.5 can be used with    any mouse that is 100%
  45.     compatible with    the Microsoft Mouse. However, you must use a
  46.     Microsoft Mouse    driver Version 6.00 or later. Earlier versions may
  47.     cause unpredictable behavior when used with QuickBASIC.    MOUSE.COM,
  48.     Version    6.24 is    supplied with QuickBASIC Version 4.5.
  49.  
  50.     Especially if you are writing programs that use    the mouse, you
  51.     should use the supplied    version    of the mouse driver when working in
  52.     QuickBASIC. Previous versions have included MOUSE.SYS, which is
  53.     installed by including the line    DEVICE=MOUSE.SYS in your CONFIG.SYS
  54.     file. This version of QuickBASIC includes MOUSE.COM, which is not
  55.     installed via CONFIG.SYS. To install MOUSE.COM,    just type MOUSE    at
  56.     the DOS    prompt.    To include MOUSE.COM automatically when    your machine
  57.     boots, make sure MOUSE.COM is in your search path, then    put the    line
  58.  
  59.         MOUSE
  60.  
  61.     in your    AUTOEXEC.BAT file. To free up memory, you can remove the
  62.     mouse driver at    any time by typing MOUSE OFF at    the DOS    prompt.
  63.     This will restore between 9K and 10.5K of memory with Version 6.11.
  64.  
  65. --------< Using    Mouse Function Calls from QuickBASIC Programs >------------
  66.  
  67.     If you are programming for the Microsoft Mouse,    you should obtain
  68.     the Microsoft Mouse Programmer's Reference Guide and the library
  69.     MOUSE.LIB that comes with it. (These are not included in QuickBASIC
  70.     or Mouse package and must be ordered separately). Most of the
  71.     information in the Mouse Programmer's Reference Guide applies
  72.     directly to QuickBASIC Version 4.5. However, the following additional
  73.     restrictions must be observed:
  74.  
  75.     Certain    Mouse function calls (Functions    9 & 16)    require    you to set
  76.     up an integer array and    pass the address of the    array to the mouse
  77.     driver.    For previous versions, the only    restriction on this array
  78.     was that it had    to be $STATIC (the default array type).    In QuickBASIC
  79.     Version    4.5, however, the array    also must be in    a COMMON block if you
  80.     will be    making the Mouse function call from within the QuickBASIC
  81.     environment.  In addition, it is recommended that the support code
  82.     for the    Mouse call be in a Quick library or linked into    the
  83.     executable file    when making Mouse function calls from QuickBASIC.
  84.  
  85.     To produce a Quick library for using Mouse function calls from
  86.     within the QuickBASIC environment, use the following command line
  87.     (produces MOUSE.QLB):
  88.  
  89.         LINK MOUSE.LIB/QU,MOUSE.QLB,,BQLB40.LIB/NOE;
  90.  
  91.     An example from    PIANO.BAS (included with the Microsoft Mouse
  92.     Programmer's Reference) for using Mouse function call 9:
  93.  
  94.         DEFINT A-Z
  95.         DECLARE    SUB MOUSE (M1, M2, M3, M4)
  96.         DIM Cursor(15, 1)
  97.         COMMON Cursor() 'Ensures array data is in DGROUP
  98.         .
  99.         .  (set    up Cursor() for    mouse cursor shape desired)
  100.         .
  101.         M1 = 9:    M2 = 6:    M3 = 0
  102.         CALL MOUSE(M1, M2, M3, VARPTR(Cursor(0,    0)))
  103.  
  104.     In addition to the above, note that Mouse function calls 21-23
  105.     require    dynamically allocated storage out of the home data segment.
  106.     The recommended    way to do this is to allocate space in a dynamic
  107.     string variable    based on the return value from function    call 21,
  108.     using the STRING$ or SPACE$ function. Then use VARPTR on this string
  109.     variable just prior to calling Mouse function call 22 or 23.
  110.  
  111. ===< Part 4: Supplementary Information on Mixed-Language Programming >
  112.  
  113. --------< Linking from within QuickC or    with QCL >--------------------------
  114.  
  115.     Microsoft QuickC and the QCL command both set the /NOI linker
  116.     by default. Therefore, you should not link from    within QuickC, or
  117.     with QCL, when your program contains modules written in    a case-
  118.     insensitive language such as BASIC. Use    LINK to    link your program
  119.     from the command line.
  120.  
  121. --------< Pascal and Fortran Modules in    QuickBASIC Programs >---------------
  122.  
  123.     Modules    compiled with Microsoft    Pascal or Fortran can be linked    with
  124.     BASIC programs,    as described in    the Microsoft Mixed-Language
  125.     Programming Guide. They    can also be incorporated in Quick libraries.
  126.     However, QuickBASIC programs containing    code compiled with Microsoft
  127.     Pascal must allocate at    least 2K near-heap space for Pascal. This can
  128.     be done    by using the DIM statement to allocate a static    array of 2K or
  129.     greater    in the NMALLOC named common block, for example,    as follows:
  130.  
  131.     DIM name%(2048)
  132.     COMMON SHARED /NMALLOC/    name%()
  133.  
  134.     The Pascal run-time assumes it always has at least 2K of near-heap
  135.     space available. If the    Pascal code cannot allocate the    required
  136.     space, QuickBASIC may crash. This applies to Pascal code in Quick
  137.     libraries as well as Pascal code linked    into executable    files. The
  138.     situation is similar for Fortran I/O, which also requires near
  139.     buffer space, and which    can be provided    by the same means as the
  140.     Pascal near malloc space.
  141.  
  142. --------< STATIC Array Allocation >---------------------------------------
  143.  
  144.     If you are writing assembly-language modules for use in    QuickBASIC
  145.     programs, see Section 2.3.3, "Variable Storage Allocation," in the
  146.     BASIC Language Reference. Assembly-language code should    not assume
  147.     data is    in a particular    segment. To avoid problems, pass data using
  148.     the SEG    or CALLS keywords, or use FAR pointers.    Alternatively, you
  149.     can declare all    arrays dynamic (still using far    pointers) since
  150.     dynamic    arrays are handled identically by BC and within    QuickBASIC.
  151.  
  152. --------< Quick    Libraries with Leading Zeros in    the First Code Segment >--
  153.  
  154.     A Quick    library    containing leading zeros in the    first CODE segment
  155.     is invalid, causing the    message "Error in loading file <name> -
  156.     Invalid    format" when you try to load it in QuickBASIC. For example,
  157.     this can occur if an assembly-language routine puts data that is
  158.     initialized to zero in the first CODE segment, and it is subsequently
  159.     listed first on    the LINK command line when you make a Quick library.
  160.     If you have this problem, do either of the following:
  161.     (1) link with a    BASIC module first on the LINK command line, or
  162.     (2) make sure that, in whatever    module comes first on the LINK
  163.     command    line, the first    code segment starts with a non-zero byte.
  164.  
  165. --------< References to    DGROUP in Extended Run-time Modules >-------------
  166.  
  167.     For mixed-language programs that use the CHAIN command,    you should
  168.     make sure that any code    built into an extended run-time    module does not
  169.     contain    any references to DGROUP. (The CHAIN command causes DGROUP to
  170.     move, but does not update references to    DGROUP.) This rule applies
  171.     only to    mixed-language programs; because BASIC routines    never refer
  172.     to DGROUP, you can ignore this caution for programs written entirely
  173.     in BASIC.
  174.  
  175.     To avoid this problem, you can use the value of    SS, since BASIC    always
  176.     assumes    that SS    coincides with DGROUP.
  177.  
  178. ===< Part 5: Using Btrieve >
  179.  
  180. -------------------< Using Btrieve in OS/2 Protected Mode >--------------------
  181.  
  182.     In OS/2    protected mode,    a BASIC    program    that uses Btrieve must do a
  183.     Btrieve    reset call (function 28) before    executing the CHAIN statement.
  184.     The program must also reopen all Btrieve files when the    destination of
  185.     the CHAIN starts to run.
  186.  
  187. --------------------< Using Btrieve with QuickBASIC >--------------------------
  188.  
  189.     If you use Btrieve with    QuickBASIC, you    must make a small change to
  190.     your programs for QuickBASIC Version 4.5. Currently your programs
  191.     contain    a statement that obtains the address of    the field buffer for
  192.     an open    file. For example:
  193.  
  194.         OPEN "NUL" AS #1
  195.         FIELD #1, 20 AS CITY$, 10 AS STATE$
  196.         FCB.ADDR% =    VARPTR(#1)  'This statement obtains the address
  197.  
  198.     In QuickBASIC Version 4.5, you should change the indicated statement
  199.     to return the address of the first variable in your field buffer minus
  200.     a constant, as follows:
  201.  
  202.         OPEN "NUL" AS #1
  203.         FIELD #1, 20 AS CITY$, 10 AS STATE$
  204.         FCB.ADDR% =    SADD(CITY$) - 188 ' CITY$ is the first field
  205.                       ' buffer variable
  206.  
  207.     The following example shows how    to obtain the same address for a
  208.     user-defined type:
  209.  
  210.         TYPE ADDRESS
  211.         CITY AS    STRING * 20
  212.         STATE AS STRING    * 10
  213.         END    TYPE
  214.  
  215.         DIM    ADD1 AS    ADDRESS
  216.  
  217.         FCB.ADDR% =    VARPTR(ADD1) - 188
  218.         ' or, you can use FCB.ADDR% = VARPTR(ADD1.CITY) - 188
  219.  
  220.     Your programs should function correctly    with Btrieve with this change.
  221.  
  222. ===< Part 6: DOS 3.20 Patch >
  223.  
  224. This information is important only if your system has ALL of the following
  225. characteristics:
  226.  
  227.     1.    Uses MS-DOS version 3.20
  228.     2.    Boots from a hard disk drive
  229.     3.    Has a math coprocessor (for instance, an 8087 chip)
  230.     4.    Runs programs that use floating-point math
  231.  
  232. For systems that satisfy all of    the preceding conditions, you may be able to
  233. eliminate floating-point math problems by installing a small patch in DOS. If
  234. you are    not sure whether you need the patch, perform the following steps:
  235.  
  236.     1.    Copy the program PATCH87.EXE (included in this release)    to the root
  237.     directory of your hard-disk drive.
  238.  
  239.     2.    Reboot your system from    the hard disk, and DO NOT PERFORM ANY FLOPPY-
  240.     DISK OPERATIONS    after rebooting. It is very important that you avoid
  241.     floppy-disk I/O    after rebooting, since that will affect    the reliability
  242.     of the diagnostic test that you    are about to perform.
  243.  
  244.     3.    If necessary, use the CD command to move to the    root directory of your
  245.     hard-disk drive.
  246.  
  247.     4.    Run the    PATCH87.EXE program by entering    this command at    the DOS    prompt:
  248.  
  249.         PATCH87
  250.  
  251.     5.    The program performs a diagnostic test on your system to determine
  252.     whether    it needs the DOS patch,    and if the patch is needed,
  253.     whether    the patch can be installed successfully. If the    program    tells
  254.     you that you need to install the DOS patch, and    that it    can be done,
  255.     follow the procedure described in the next section.
  256.  
  257.     NOTE: The floating-point problem has been eliminated in versions of
  258.     MS-DOS higher than 3.20. This includes MS-DOS versions 3.21    and 3.30.
  259.  
  260. If you performed the preceding test and    determined that    you should install the
  261. DOS patch on your system, perform the following    steps:
  262.  
  263.     1.    Format a blank floppy disk. (Do    NOT use    the /s formatting option to
  264.     transfer system    files to the disk.)
  265.  
  266.     2.    Use the    SYS command to copy IO.SYS and MSDOS.SYS from the root
  267.     directory of your hard disk to the new floppy disk. For    instance, if
  268.     you boot from drive C:,    you would enter    the following commands:
  269.  
  270.         C:
  271.         SYS    A:
  272.  
  273.     3.    Use the    COPY command to    copy COMMAND.COM and SYS.COM to    the same
  274.     floppy disk.
  275.  
  276.     4.    Use the    COPY command to    copy the program PATCH87.EXE (included in this
  277.     release) to the    same floppy disk.
  278.  
  279.     5.    Change the current drive and directory to the floppy disk, by entering
  280.     the following command:
  281.  
  282.         A:
  283.  
  284.     7.    Install    the DOS    patch by entering the following    command:
  285.  
  286.         PATCH87 /F
  287.  
  288.     WARNING: If you    experience any disk errors during steps    2 through 7,
  289.     do NOT proceed with step 8. Reboot from    your hard disk and repeat the
  290.     entire process.
  291.  
  292.     8.    If you have not    experienced any    errors,    use the    SYS command to transfer
  293.     the files IO.SYS and MSDOS.SYS from the    floppy disk back to your hard
  294.     disk. For instance, if the boot    directory of your system is the    root
  295.     directory of drive C:, you would enter the following command at    the DOS
  296.     prompt:
  297.  
  298.         A:
  299.         SYS    C:
  300.  
  301.     9.    The DOS    patch has been installed. Reboot the system.
  302.  
  303. ===< Part 7: Miscellaneous Information About Using QuickBASIC >
  304.  
  305. ----------------------<    Using FIXSHIFT.COM Utility >-----------------------
  306.  
  307.     Some keyboards have an extra set of DIRECTION (i.e. arrow) keys, in
  308.     addition to those on the numeric keypad. A bug in the ROM BIOS of
  309.     some machines with these keyboards can interfere with the QuickBASIC
  310.   editor. The Utilities    2 disk includes    a program, FIXSHIFT.COM, that
  311.   fixes    this bug. If you have such a keyboard, run this    program    by typing
  312.   FIXSHIFT. If your machine does not have the bug, FIXSHIFT displays a
  313.   message telling you so. Otherwise FIXSHIFT prompts you for the proper
  314.   actions. FIXSHIFT takes about    450 bytes of memory. Except for    the BIOS
  315.   bug, it has no effect    on other programs you run.
  316.  
  317. ----------------------<    Note on    VGA Display Adapter >----------------------
  318.  
  319.     If you install an IBM (R) Personal System/2 (TM) Video Graphics
  320.     Array display adapter (VGA) in a non-PS/2 machine, the VGA adapter
  321.     should be the only adapter in the system, and you should not use
  322.     monochrome modes (SCREEN 10) if    you have a color monitor. Similarly,
  323.     you should not use color modes (SCREEN 1, 2, 7,    8, 9, 11, 12, 13) if
  324.     you have a monochrome monitor.
  325.  
  326. -------------------< Note on Using QuickBASIC with DOS 2.1 >----------------
  327.  
  328.     To use QuickBASIC with a two-floppy system under DOS 2.1, you must
  329.     put a copy of COMMAND.COM on each disk containing an executable
  330.     file ( a file with the .EXE extension).
  331.  
  332. -------------< PTR86, LOF, Naming SUB procedures and variables >------------
  333.  
  334.     PTR86 is no longer supported. Use VARSEG and VARPTR instead.
  335.     Also, when used    with a communications device, LOF now returns the
  336.     amount of space    remaining (in bytes) in    the output buffer. In
  337.     previous versions this was returned in the input buffer. Also, note
  338.     that a variable    and SUB    procedure could    have the same name in
  339.     previous versions. In Version 4.5, this    causes a "Duplicate
  340.     definition" error message.
  341.