home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_tools / vbit11 / idbtools.hst < prev    next >
Text File  |  1995-01-22  |  3KB  |  73 lines

  1. _____________________________________________________________________________
  2.  
  3.           Additions and changes to IDBTOOLS   -   version history
  4.           -------------------------------------------------------
  5.  
  6. Date      Description
  7. """""""   """""""""""
  8. 22jan95   Version 1.1 released.
  9.           + Functions that returned 0=FALSE, non-zero=TRUE, now 
  10.             returns the Visual Basic value for "True", which is -1.
  11.             The problem was that the "Not" operation did not work
  12.             with these routines, since Visual Basic calculates
  13.             BITWISE NOT instead of LOGICAL NOT (which would be a
  14.             bit more inteligent). The only value giving 0 (False)
  15.             after a BITWISE NOT operation, is -1. 
  16.             The following tests should now work as expected:
  17.                 If Not LicenseIdbTools("UserName","CODEXX") Then ...
  18.                 If Not LicenseProgram (......
  19.                 If Not Modulus10Valid (.....
  20.                 If Not Modulus11Valid (....
  21.  
  22.           + The functions ITabRead, ITabReadFixedRecLen and ITabWrite
  23.             now causes a stopwatch to be displayed as the wait cursor
  24.             while file I/O is in progress.
  25.  
  26.           + Attempt to read non-existent file into a table will result
  27.             in an empty table. This gave an error before.
  28.  
  29.           + Minor modifications to the messagebox text describing
  30.             the shareware restrictions/conditions for using this tool.
  31.  
  32.           + Improved error checking on table handles. ITabDelete now
  33.             put 0 into the handle argument variable after the table
  34.             has been deleted. Use of illegal handles (e.g. 0) will
  35.             give VB Runtime error 420 (Illegal Object Ref.)
  36.  
  37.           + New function: FullPath("..\*.tmp") -> "C:\TEST\*.tmp"   
  38.  
  39.           + ITabRead, type=*CSV* will now decode fields surrounded by
  40.             quotes, allowing the given delimiter to be included in the
  41.             data fields. Two subsequent quotes in a field surrounded
  42.             by quotes, will be interpreted as one.
  43.  
  44. 11jan95   Version 1.0 released. This is the first public release.
  45.           No known bugs. The libraries have been used for approx.
  46.           2 months by several advanced beta testers.
  47.  
  48. _____________________________________________________________________________
  49.  
  50. Noted wishes for future versions:
  51.  
  52. - ITabCopy(fromTab&,fromLine%,toTab&,toLine%,numLines%)
  53.   copy between tables
  54. - ITabCopyExtToVTSS(tab&,SS,fromLine%,toLine%,numLines%,switches%)
  55.   extended calls giving the programmer more control
  56. - ITabCopyExtFromVTSS
  57. - ITabCopyToGrid / ITabCopyFromGrid
  58.   ITabCopyToSpread / ITabCopyFromSpread
  59.   (similar to ITabCopyToVTSS / ITabCopyFromVTSS)
  60. - ITabCopyToListBox / ITabCopyFromListBox
  61. - ITabCopyToTextBox / ITabCopyFromTextBox
  62. - Sorting tables on various date formats
  63. - ITabSort, extended call giving the programmer more control
  64.  
  65. Comments and suggestions are welcome. Send mail to:
  66.  
  67. idb@vestnett.no                  Idb Micro Adept AS
  68.                                  Strandgaten 207
  69.                                  N-5004 Bergen
  70.                                  Norway
  71. _____________________________________________________________________________
  72.  
  73.