home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / source / pwez41 / read.me < prev    next >
Text File  |  1991-02-01  |  9KB  |  222 lines

  1.  
  2.  
  3.                       **  MISCELLANEOUS INFORMATION **
  4.  
  5.  
  6.          1.  To print the manual at the DOS prompt enter:
  7.  
  8.                    PRNT          ( For most printers )
  9.                    LAZPRNT       ( For HP compatible lazer printers )
  10.  
  11.              PRNT.BAT or LAZPRNT.BAT and WIND_REZ.DOC must be in the
  12.              current drive and directory.
  13.  
  14.  
  15.          2.  To print the quick reference guide ( enhanced version
  16.              only ) at the DOS prompt enter;
  17.                    
  18.                    PRNT2       ( For most printers )
  19.                    LAZPRNT2    ( For HP compatible lazer printer ) 
  20.  
  21.              PRNT2.BAT or LAZPRNT2.BAT and QUICKREF.DOC must be in
  22.              the current drive and directory.
  23.  
  24.  
  25.          3.  To run the demonstration program at the DOS prompt, enter:
  26.  
  27.                                    DEMO
  28.  
  29.  
  30.          4.  NOTES FOR BASIC 7.+ USERS. ( ENHANCED VERSION )
  31.  
  32.               Do not use unnamed COMMON blocks in your program.  If
  33.               your program requires unnamed COMMON blocks see the 
  34.               section "Important notes for BASIC 7.0/7.1 users." in 
  35.               the documentation. 
  36.  
  37.               There are two sets of libraries for BASIC 7.+.  Depend-
  38.               ing on which version of BASIC you have, you will receive
  39.               the following.
  40.  
  41.                   - PDSALL71.LIB, PDSALL71.QLB, PDSNER71.LIB and
  42.                     PDSNER71.QLB are for BASIC 7.1
  43.  
  44.                   - PDSALL70.LIB, PDSALL70.QLB, PDSNER70.LIB and
  45.                     PDSNER70.QLB are for BASIC 7.0
  46.  
  47.               The libraries were produced from within the QBX environ-
  48.               ment.  QBX compiles using the far string option.  You
  49.               must use the far string ( /Fs ) option if you compile
  50.               outside the QBX environment.
  51.             
  52.               If you are using BASIC 7.0 and upgrade to BASIC 7.1 you
  53.               can create your own compatible library by loading QBX with                     PDSASM.QLB ( QBX/L PDSASM ).  Load all of the basic files                      required by WINDOWS R-E-Z.
  54.            
  55.                         DIRWIND.BAS
  56.                         INPTWIND.BAS
  57.                         PULLDOWN.BAS
  58.                         SCROLL.BAS
  59.                         WIND_REZ.BAS
  60.                         PDSMEM.BAS
  61.  
  62.               Make the library from within the QBX environment. The
  63.               library will contain all routines and have error detection.           
  64.                             
  65.          5. NOTE FOR BASIC 7.0 USERS.  ( UNENHANCED VERSION )
  66.  
  67.               Do not use unnamed COMMON blocks in your program.  The
  68.               enhanced version of WINDOWS R-E-Z provides the ability
  69.               to use unnamed COMMON blocks.  
  70.  
  71.               The library, PDSUNEN.LIB, contains object files made
  72.               from the BASIC 7.1 compiler.  While making an executable
  73.               file from within QBX, the following message will appear.
  74.  
  75.               LINK WARNING L4051: BRT71EFR.LIB: CANNOT FIND LIBRARY
  76.               Enter new file spec:
  77.  
  78.               Press ENTER or RETURN.  The file, BRT71EFR.LIB is not
  79.               required.
  80.  
  81.  
  82.                      ** NEW FEATURES IN VERSION 4.10  **
  83.                        ( See WIND_REZ.DOC for details. )
  84.  
  85.          New - Version 4.10
  86.  
  87.               - Starting in  version 4.00 memory for windows was allocat-
  88.                 ed only when required.  Version 4.10 also de-allocates
  89.                 window memory when a window is deleted.  This was
  90.                 not done in version 4.00.  Therefore in version 4.00
  91.                 if 25,000 bytes was the maximum used for window
  92.                 memory 25,000 bytes "remained in reserve" for window
  93.                 memory.   Version 4.10 recovers window memory as
  94.                 windows are deleted.  If 25,000 bytes are in window
  95.                 memory and a window with 5,000 bytes is deleted, only
  96.                 20,000 bytes remain in window memory.
  97.  
  98.               - Scroll and pulldown windows recognize mouse movement.
  99.  
  100.               - A function, KEYMOUSE%, reads keyboard and mouse input,
  101.                 or mouse movement.
  102.  
  103.               - A routine, MBUTTONS, defines the left and right mouse
  104.                 buttons
  105.  
  106.               - A routine, MOUSEON, turns the mouse on, off, or dis-
  107.                 ables mouse movement detection.
  108.  
  109.               - Fixed choice fields are now available for the multi-
  110.                 field input routine, MULTINPT.  
  111.  
  112.               - The direction arrow incorporated in scroll and pull-
  113.                 down windows may, optionally, be eliminated.
  114.  
  115.               - The /Ea option can be used for BASIC 7.0/ 7.1 when 
  116.                 loading QBX.  This allows the use of expanded memory.     
  117.   
  118.            
  119.           Compatibility issues:
  120.  
  121.           The following routine was changed in version 4.10 and
  122.           is not compatible with earlier versions.  Minor program
  123.           revisions are necessary for programs incorporating
  124.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  125.  
  126.           - SETWIND has an extra argument to disable the scroll window
  127.             direction arrow.
  128.  
  129.           - After a window is made or saved it must be deleted via
  130.             RSTRWIND or DELWIND before the number assigned to the window
  131.             can be used by again MAKEWIND or SAVEWIND.  This prevents a                    window from being accidently "made over itself".  Failure
  132.             to delete a window before using the window number again
  133.             will result in an ERROR 8 - WINDOW PRE-EXISTS.
  134.  
  135.  
  136.           The following routines were changed in version 4.00/.01 and
  137.           are not compatible with earlier versions.  Minor program
  138.           revisions are necessary for programs incorporating
  139.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  140.  
  141.           - GETANS, PULLDOWN, and INPTWIND have an extra argument
  142.             for border designation.
  143.  
  144.           - SETWIND now has five argument designating windowing
  145.             speed, default sound, window shadow color, high intensity
  146.             display for PULLDOWN and SCRLWIND, and the type of decimal
  147.             point ( period or comma for foreign ).
  148.  
  149.           - SCRLWIND no longer has a argument for the window number
  150.             as it acts upon the active window.
  151.  
  152.           - SETINPT has an extra argument specifying the color of the
  153.             active field for MULTINPT.
  154.  
  155.           - FINDDIR has one less argument as it no longer has to
  156.             place the directory listing in a string.
  157.  
  158.           - SETSOUND is no longer required due to changes in SETWIND.
  159.  
  160.           - CHNGFAST is no longer required due to changes in SETWIND.
  161.  
  162.           - FILLDIR is no longer required due to changes in FINDDIR.
  163.  
  164.           - The argument designating the code ( CODE$ ) for INPTWIND
  165.             has changed.
  166.  
  167.           - The argument designating the type of directory search
  168.             ( TYPE$ ) in FINDDIR has changed.
  169.  
  170.  
  171.           The following routines were changed in version 3.60 and
  172.           are not compatible with earlier versions.  Minor program
  173.           revisions are necessary for programs incorporating
  174.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  175.  
  176.           - PULLDOWN has an extra argument which sets the color of
  177.             the key character for the items in the pulldown window.
  178.             PULLDOWN no longer returns the selected menubar string
  179.             and pulldown window string to the calling program. It
  180.             returns the sequential number of the selected menubar
  181.             item and selected pulldown window item.
  182.  
  183.           - SCRLWIND has an extra argument which sets the color of
  184.             the key characters for the items in the scroll window.
  185.             SCRLWIND no longer returns the selected string.  It re-
  186.             turns the sequential number of the string in the scroll
  187.             window.
  188.  
  189.  
  190.           The following input routines changed in version 3.40,
  191.           are not compatible with earlier versions.  Minor program
  192.           revisions are necessary for programs incorporating
  193.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  194.  
  195.           - INPTWIND and SETINPT have an extra argument defining
  196.             allowable characters for RESTRICTED fields.
  197.  
  198.           - MULTINPT has an additional argument which determines
  199.             if all fields or single fields are updated.
  200.  
  201.  
  202.           Misc:
  203.  
  204.           - Only two Multi-field input screens are permitted with a
  205.             maximum of 25 fields per screen in the unenhanced version
  206.             of WINDOWS R-E-Z.  Full color capability became available
  207.             starting with unenhanced version 3.40 of WINDOWS R-E-Z.
  208.  
  209.           Bugs:
  210.     
  211.           - Routine CHNGPULL would not work in the first pulldown
  212.             window in versions 3.60 and 4.00.  This has been corrected
  213.             in version 4.01.   
  214.  
  215.           - A call to SCRLWIND could change the "PRINT-TO" color of
  216.             the active window in version 4.00.  This has been corrected
  217.             in version 4.01.
  218.  
  219.           - CHNGWIND could not be used for window number 0 in version
  220.             4.00.  This has been corrected in version 4.01.
  221.  
  222.