home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxs21d.zip / VXRXS21D.TXT < prev   
Text File  |  1995-09-27  |  4KB  |  87 lines

  1.  
  2. /*
  3.  * vxrxS21d.zip -- Patches to upgrade VX-REXX Standard Edition from 
  4.  *                 version 2.1C to 2.1D
  5.  *
  6.  * How to patch VX-REXX version 2.1C to version 2.1D:
  7.  *
  8.  *   0) Backup your existing VX-REXX directory.
  9.  *   1) Copy the ZIP file to the directory where VX-REXX is installed
  10.  *      and make it your current directory.
  11.  *   2) Unzip the patch file, making sure that your UNZIP program creates
  12.  *      directories stored in the ZIP file.
  13.  *      For example, if you are using UNZIP from InfoZip, use
  14.  *          unzip -o vxrxS21d
  15.  *      If you are using PKUNZIP from PKWARE, use 
  16.  *          pkunzip -d -o vxrxS21d
  17.  *   3) Your VX-REXX directory will contain a number of new files.
  18.  *   4) Run the PATCH.CMD file to patch the .EXE, .DLL, and .INF files.
  19.  *      Your PROJECTS directory will not be changed.
  20.  *
  21.  *   VX-REXX 2.1D is now installed and ready-to-go. See the revised online
  22.  *   "Read Me First" or the rest of this file for the list of changes.
  23.  */
  24.  
  25. ****************************************************************************
  26.  
  27. New in VX-REXX version 2.1D
  28. ===========================
  29.  
  30. Design Environment: General
  31. ---------------------------
  32.     Drag and Drop macros
  33.         The drag-and-drop macro code for setting the MultiSelect and 
  34.         ExtendSelect properties has been removed since these are both 
  35.         create-time properties.
  36.  
  37.     Resource Compiler
  38.         The Resource Compiler now works when run on an HPFS drive in a
  39.         directory that contains embedded blanks.
  40.  
  41.  
  42. Runtime Environment: Objects
  43. ----------------------------
  44.     All Objects
  45.         The "Top" event information returned for a DragDrop event has been 
  46.         corrected. Previously, VRInfo( "Top" ) returned an incorrect value. 
  47.         Now it returns the distance from the mouse to the top of the drop 
  48.         target (as documented).
  49.  
  50.     Container
  51.         The ReadOnly attribute for a container record now prevents direct 
  52.         editing of the record. Previously, the attribute could be set but 
  53.         had no effect.
  54.  
  55.         Previously, turning off the ReadOnly attribute for a field would not 
  56.         enable direct editing of the field title. Now the field title becomes 
  57.         editable when the ReadOnly attribute is removed.
  58.  
  59.         Previously, when using a Container object set to details view with a 
  60.         split bar, attempting to drag a record would result in the split bar 
  61.         being dragged instead. Now dragging of records is enabled in this 
  62.         case.
  63.  
  64.     MultiLineEntryField
  65.         Updated the SelectedText property so that it takes into account the 
  66.         text format of the MLE. Previously, if the user changed the text 
  67.         format of the MLE, SelectedText would not always return the correct 
  68.         result.
  69.  
  70.         Previously, getting the Font property would not always return the 
  71.         correct point size for the current font in the MLE, specifically 
  72.         when the Font property was set using VRSet rather than by dragging 
  73.         from the font palette. Now the Font property contains the correct 
  74.         value in this case.
  75.  
  76.     PictureBox
  77.         Previously, specifying the same icon for multiple PictureBox objects 
  78.         resulted in unpredictable behavior when the application closed. The 
  79.         application will now close correctly in this case.
  80.  
  81.  
  82. General: Samples
  83. ----------------
  84.     Employee
  85.         Updated the Employee sample to work with DB2/2 version 2.1.
  86.  
  87.