home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / stringop / readme.txt next >
Encoding:
Text File  |  1999-06-09  |  3.3 KB  |  73 lines

  1. ==============================
  2. StringOps 1.0.08 release notes
  3. (6/10/99)
  4. ==============================
  5.  
  6. Bug fixes:
  7. * Fixed a big huge gaping bug in the GetDelimited(), StripDelimited(),
  8.   StripPunctuation(), and StripSingle() functions which sometimes
  9.   caused the OCX to get stuck in a loop, which prevented further use
  10.   of the control and made it impossible to exit whatever program uses
  11.   the control.
  12. * Changed the date specified for the previous release in version
  13.   1.0.07 release notes. There was a little typo that made it look like
  14.   version 1.0.07 was released on May 17, 1997 rather than May 17,
  15.   1999. Heh, I must've been real tired when I wrote that.
  16. * As usual, did some minor code-tweaking here and there to speed some
  17.   stuff up.
  18.  
  19. Other stuff:
  20.   I've been using StringOps extensively in various projects both for
  21.   my own personal amusement and for very big important programs which
  22.   I write for Intel Corporation. One of the programs I'm writing is an
  23.   IRC-style client/server intranet chat application, which uses
  24.   StringOps to do lots of string parsing for commands and stuff. 
  25.   
  26.   Another application I'm building is an integrated development
  27.   environment for a custom installation scripting language that Intel
  28.   uses for some of its software products. We're basically writing an
  29.   entire programming language from scratch here, and StringOps is what
  30.   we use to do all the string parsing.
  31.   
  32.   This is just a quick little testomonial so you know that I actually
  33.   do use this thing and I care very much about the quality and
  34.   stability of this OCX. It also means that as I need to do new things
  35.   I'll add new features to StringOps, so keep your eyes open.
  36.   
  37.   
  38.  
  39. ==============================
  40. StringOps 1.0.07 release notes
  41. (5/17/99)
  42. ==============================
  43.  
  44. Bug fixes:
  45. * Fixed bug in GetDelimited() that overwrote the supplied string with
  46.   the resulting string -- this was a really stupid mistake on my part
  47.   and I apologize for all the trouble this may have caused.
  48. * Fixed bug in GetAllAfter() that wouldn't properly handle a delimiter
  49.   string longer than one character.
  50.  
  51. Major changes:
  52. * Got rid of the progress bar. If you guys want a progress bar, you
  53.   can do it yourselves -- it just slows things down way too much and
  54.   adds too much extra code to the OCX to be useful.
  55. * Removed the SearchReplace() method. This method was redundant,
  56.   because I just found out that VB6+ has a native function called
  57.   Replace() that does an even better Search and Replace operation on
  58.   strings.
  59. * Renamed the ReturnDelimited() method to GetDelimited(), which makes
  60.   more sense. The old method still works though (that way your code
  61.   won't all be broken).
  62. * Modified the GetDelimited() method to return a collection containing
  63.   all instances of the delimited text rather than just a string
  64.   containing the first instance. Old code will *not* work without
  65.   modifications.
  66. * Reduced the Reverse() method down to only a few lines of code --
  67.   much faster than before.
  68.  
  69. Other stuff:
  70.   The OCX is now 12Kb smaller than the previous version, and it's more
  71.   stable than ever. I've run as many tests as I can think of to make
  72.   this thing not work, and it seems to be rock solid. If you have any
  73.   problems, please contact me at ryan@wonko.com.