home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / qbasic / qwez42.zip / READ.ME < prev    next >
Text File  |  1991-04-01  |  9KB  |  219 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.         6. NOTE FOR USERS OF UNENHANCED VERSION FOR QUICKBASIC AND
  82.            BASIC 7.+.
  83.  
  84.            Only two Multi-field input screens are permitted with a
  85.            maximum of 25 fields per screen in the unenhanced version
  86.            of WINDOWS R-E-Z. 
  87.  
  88.           
  89.                      ** NEW FEATURES IN VERSION 4.20  **
  90.                        ( See WIND_REZ.DOC for details. )
  91.  
  92.          New - Version 4.20
  93.  
  94.           - Pulldown windows may be displayed at selectable locations
  95.             on the display.  Previous versions restricted the menubar 
  96.             to row one.
  97.  
  98.           - The ESC key may be optionally used to exit the multi-field
  99.             input routine MULTINPT.
  100.  
  101.           - Input routines accept dates from 01/01/1901 to 12/31/2099.
  102.             Previous versions restricted the the date from 01/01/1980
  103.             to 12/31/2099.
  104.            
  105.           - Input routines may use one of ten date formats;
  106.  
  107.                          DD/MM/YYYY     DD/MM/YY
  108.                          DD-MM-YYYY     DD-MM-YY
  109.                          MM/DD/YYYY     MM/DD/YY
  110.                          MM-DD-YYYY     MM-DD-YY
  111.                          MM.DD.YYYY     MM.DD.YY                      
  112.  
  113.  
  114.           Compatibility issues:
  115.  
  116.           NOTE: To assure compatibility with earlier versions replace
  117.           the declare statements in programs written with earlier 
  118.           versions with the DECLARE.INC file included with version 
  119.           4.20.  This will assure argument matching.  Failure to do 
  120.           this can result in the program crashing.
  121.  
  122.           The following routines were changed in version 4.20 and
  123.           are not compatible with earlier versions.  Minor program
  124.           revisions are necessary for programs incorporating
  125.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  126.  
  127.           - SETWIND has an additional argument which specifies the
  128.             date format for input routines.
  129.  
  130.           - SETPULL has three additional arguments.  These arguments
  131.             set the menubar's top row and left column position and the 
  132.             menubar's width.
  133.  
  134.           - INPTWIND has an additional argument.  It is used to deter-
  135.             mine if the RETURN key or ESC key exited the routine.   
  136.  
  137.           - MULTINPT has an additional argument.  It is used to deter-
  138.             mine which key exited an autoexit field.   
  139.                
  140.           The following routine was changed in version 4.10 and
  141.           is not compatible with earlier versions.  Minor program
  142.           revisions are necessary for programs incorporating
  143.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  144.  
  145.           - SETWIND has an extra argument to disable the scroll window
  146.             direction arrow.
  147.  
  148.           - After a window is made or saved it must be deleted via
  149.             RSTRWIND or DELWIND before the number assigned to the window
  150.             can be used by again MAKEWIND or SAVEWIND.  This prevents a                    window from being accidently "made over itself".  Failure
  151.             to delete a window before using the window number again
  152.             will result in an ERROR 8 - WINDOW PRE-EXISTS.
  153.  
  154.  
  155.           The following routines were changed in version 4.00/.01 and
  156.           are not compatible with earlier versions.  Minor program
  157.           revisions are necessary for programs incorporating
  158.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  159.  
  160.           - GETANS, PULLDOWN, and INPTWIND have an extra argument
  161.             for border designation.
  162.  
  163.           - SETWIND now has five argument designating windowing
  164.             speed, default sound, window shadow color, high intensity
  165.             display for PULLDOWN and SCRLWIND, and the type of decimal
  166.             point ( period or comma for some non-USA users ).
  167.  
  168.           - SCRLWIND no longer has a argument for the window number
  169.             as it acts upon the active window.
  170.  
  171.           - SETINPT has an extra argument specifying the color of the
  172.             active field for MULTINPT.
  173.  
  174.           - FINDDIR has one less argument as it no longer has to
  175.             place the directory listing in a string.
  176.  
  177.           - SETSOUND is no longer required due to changes in SETWIND.
  178.  
  179.           - CHNGFAST is no longer required due to changes in SETWIND.
  180.  
  181.           - FILLDIR is no longer required due to changes in FINDDIR.
  182.  
  183.           - The argument designating the code ( CODE$ ) for INPTWIND
  184.             has changed.
  185.  
  186.           - The argument designating the type of directory search
  187.             ( TYPE$ ) in FINDDIR has changed.
  188.  
  189.  
  190.           The following routines were changed in version 3.60 and
  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.           - PULLDOWN has an extra argument which sets the color of
  196.             the key character for the items in the pulldown window.
  197.             PULLDOWN no longer returns the selected menubar string
  198.             and pulldown window string to the calling program. It
  199.             returns the sequential number of the selected menubar
  200.             item and selected pulldown window item.
  201.  
  202.           - SCRLWIND has an extra argument which sets the color of
  203.             the key characters for the items in the scroll window.
  204.             SCRLWIND no longer returns the selected string.  It re-
  205.             turns the sequential number of the string in the scroll
  206.             window.
  207.  
  208.  
  209.           The following input routines changed in version 3.40,
  210.           are not compatible with earlier versions.  Minor program
  211.           revisions are necessary for programs incorporating
  212.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  213.  
  214.           - INPTWIND and SETINPT have an extra argument defining
  215.             allowable characters for RESTRICTED fields.
  216.  
  217.           - MULTINPT has an additional argument which determines
  218.             if all fields or single fields are updated.
  219.