home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / bp_6_93 / bonus / 3ctrls.exe / WHATSNEW.TXT < prev   
Text File  |  1993-09-23  |  5KB  |  175 lines

  1. New features of VideoSoft Custom Controls Version 3
  2. ====================================================
  3.  
  4. Overall
  5. =======
  6.     Optimized speed for loading/unloading your VSVBX in your apps
  7.     Creates smaller EXE and FRM files       
  8.     Around 20 new features.
  9.     15% smaller
  10.     60 pages manual
  11.  
  12. IndexTab
  13. =======
  14.   New Properties
  15.     BackSheets
  16.         Defines the appearance of the back sheets behind the
  17.         current tab.
  18.         Options:
  19.                 0 - None
  20.                 1 - Shadow
  21.                 2 - Sheets
  22.     TabCaption
  23.         Sets or retrieve the caption for an individual tab.
  24.  
  25.         VSIndexTab1.Caption = "First|Second|Third"
  26.         debug.print VSIndexTab1.TabCaption(1)
  27.            Second
  28.         VSIndexTab1.TabCaption(1) = "New Second"
  29.         debug.print VSIndexTab1.TabCaption(1)
  30.            New Second
  31.         
  32.         
  33.     TabsPerPage
  34.         Determines the number of tabs that should be
  35.         displayed in the control.
  36.  
  37.         If this property is set to 0, the size of each tab
  38.         is determined by the length of its caption.  If is
  39.         greater than zero, all tabs are DRAWN THE SAME SIZE
  40.  
  41.     TabOutLineColor
  42.         Defines the color to be used for the outline the 
  43.         tabs.
  44.  
  45.         Great to customize the 3D appearance.
  46.  
  47.   New Settings
  48.     Two new tab styles: 
  49.         Chamfered corners 
  50.         3D Chamfered corners 
  51.  
  52.   Other improvementes:
  53.     Better appearance with enhanced 3D look         
  54.     Smoother tab scrolling
  55.     Faster flicker-free redraws  
  56.     Keeps visually the tab order
  57.     Automatic True Type font converting/matching for side tabs.
  58.  
  59. Elastic
  60.  
  61.   Replace all the labels in your form with one elastic.
  62.  
  63.   New Properties
  64.     AccessKey
  65.         Determines whether the Elastic should show and 
  66.         process access keys.  Access keys are created
  67.         by preceding characters in the Caption with an 
  68.         ampersand (&).
  69.  
  70.     BevelChildren
  71.         Determines whether the Elastic should draw 3-D 
  72.         frames around all its child controls or only
  73.         around specified types of controls.
  74.  
  75.     MaxChildSize
  76.         Sets or returns the maximum size for the Elastic's
  77.         child controls.  The size is measured in Twips
  78.         and may correspond to the width or height of the 
  79.         child control, depending on the setting of the
  80.         AutoSizeChildren property.
  81.  
  82.         The maximum size limit only applies to the child 
  83.         controls being resized by the Elastic.  If
  84.         AutoSizeChildren is set to uneven Spacing, for
  85.         example, only the top child is affected. This 
  86.         property is useful to prevent controls inside 
  87.         an Elastic from spreading too much.
  88.  
  89.         Command buttons, for example, are harder to use if
  90.         they are too far apart from each other.
  91.  
  92.         Set this property to 0 disables it.
  93.  
  94.     MinChildSize
  95.         Sets or returns the minimum size for the Elastic's
  96.         child controls.  The size is measured in Twips
  97.         and may correspond to the width or height of the 
  98.         child control, depending on the setting of the
  99.         AutoSizeChildren property.
  100.  
  101.         The minimum size limit only applies to the child
  102.         controls being resized by the Elastic.  If
  103.         AutoSizeChildren is set to uneven Spacing, for
  104.         example, only the top child is affected.
  105.  
  106.         This property is useful to prevent controls inside
  107.         an Elastic from getting too narrow.  It may be 
  108.         better, for example, to show only a few command
  109.         buttons with readable captions than to show all of
  110.         them truncating the captions.
  111.  
  112.         This property can be used in conjunction with the
  113.         Splitter property to prevent users from making a 
  114.         child control too small.
  115.  
  116.         Setting this property to 0 disables it.
  117.  
  118.  
  119.     WordWrap
  120.         Determines whether the caption text should be 
  121.         automatically broken between words if a word would
  122.         extend past the edge of the control.  
  123.         Return characters will also break the caption.
  124.  
  125.  
  126.   New Settings
  127.  
  128.     New AutosizeChildren Options:
  129.         5 Elastics Horizontally
  130.         6 Elastics Vertically
  131.         7 Proportionally
  132.  
  133.         The Elastics Horizontally and Elastics Vertically
  134.         options stretch only other Elastics inside the
  135.         Elastic and spread all child controls.  They can be 
  136.         used to center controls and to form clusters of
  137.         controls inside an Elastic.
  138.  
  139.  
  140. Awk
  141.  
  142.   New Properties
  143.     Match Quotes
  144.         Determines whether the VSAwk parser should regard
  145.         quote-delimited strings as single fields.
  146.  
  147.         This features was added to facilitate parsing of 
  148.         quote and comma-delimited files such as those
  149.         exported by most database and spreadsheet programs.
  150.  
  151.         Double or single quotes are both recognized, but one
  152.         does not match the other. Unmatched quotes in a 
  153.         line are ignored.
  154.  
  155.     PostAt
  156.         Returns the position of the specified field in 
  157.         the current record.
  158.  
  159.         This property was designed to be used with VB's 
  160.         string functions.  The first string position is 1.
  161.  
  162.         This property is useful when you want to process a 
  163.         field based on its contents rather than on its 
  164.         position.  See also the FieldAt property, which 
  165.         performs the reverse function.
  166.  
  167.       FileMode
  168.         Allows scan thru ASCII or binary files.
  169.  
  170.   New Settings
  171.     FS(Field Separator) improved features.
  172.     Buffer increased from 255 bytes to 64 K.
  173.  
  174.  
  175.