home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD112761132000.psc / Release_Notes.bas < prev    next >
Encoding:
BASIC Source File  |  2000-11-04  |  4.2 KB  |  122 lines

  1. Attribute VB_Name = "Release_Notes"
  2. 'Copyright 2000, TotalTakeOut.com
  3. 'Casey Goodhew - goodhewc@hotmail.com
  4. '
  5. 'http://ttosock.2y.net
  6. 'http://www.TotalTakeOut.com
  7. '
  8. 'You can see the latest updates to the documentation at:
  9. 'http://ttosock.2y.net
  10. '
  11. 'If you would like to be notified of future updates to the control,
  12. 'please email me at goodhewc@hotmail.com
  13. '
  14. 'Version Stamp - 1.2.1 - November 3, 2000
  15. '
  16. 'If you find a bug in this code, or if you know of a better way
  17. 'to implement a function, PLEASE LET ME KNOW! When I receive bug
  18. 'reports, comments, or recommendations, I will post an updated
  19. 'version of the control as soon as possible.
  20. '
  21. 'I think that we should all share this code freely, in order to
  22. 'develop the ultimate Winsock API user control. If anyone finds
  23. 'a better way of doing something, please let me know, so that we
  24. 'can all have the advantage, and no one is left behind.
  25. '
  26. 'This souce code (both in complied and non-compiled verions)
  27. 'is free for you to use and distribute, under the condition
  28. 'that TotalTakeOut.com is acknoledged, and credit is
  29. 'given where credit is due.
  30. '
  31. 'Speaking of which, credit is due to:
  32. '         Zack Lantz - Lantz@1st.net - ICQ 17255556
  33. '         Jay Freeman (saurik) - saurik@saurik.com - www.saurik.com
  34. '         Daniel - sigsegv@mail.utexas.edu - Originator of Winsock_API.bas
  35. '                                            (Originally named Wsksock.bas)
  36. 'Thanks for the help guys!
  37. '
  38. 'YOU MAY NOT REDISTIBUTE THIS SOURCE CODE IN ANY WAY, SHAPE OR
  39. 'FORM, FOR ANY SUM OF MONEY.
  40. '
  41. 'This module must be distributed with the uncompiled project.
  42. '
  43. 'I have worked for several months to create this control. I came to
  44. 'the conclusion that there are not enough resouces on the internet
  45. 'in refernce to the Winsock API. I decided to freely distribute this
  46. 'control as both a learning tool and a pratical user control for the
  47. 'Winsock API.
  48. '
  49. '
  50. '
  51. 'November 3, 2000 Release (Version 1.2.1)
  52. '
  53. '- A bug was discovered due to the way that messaging is delivered in
  54. '    Windows NT Server 4. Details on this bug can be found @
  55. '    ttosock.2y.net under Bug #0004.
  56. '
  57. '
  58. '
  59. '
  60. 'October 24, 2000 Release (Version 1.2.0)
  61. '
  62. '- Connect Method added
  63. '    Now we call call out for connections instead of just listening.
  64. '
  65. '- Memory leak discovered
  66. '    Various minor changes made to clean this up.
  67. '    YOU WILL NEED TO INVOKE A NEW FUNCTION TO FIX THIS!!!
  68. '    Check it out the Resolved Bugs (Bug Resolution #0003) section @
  69. '    http://ttosock.2y.net
  70. '
  71. '- ListenNow Method now returns the key of the ListeningOnSocket
  72. '    It the ListeningSocket property has been removed. This is
  73. '    because if we had more than one listening socket, only the
  74. '    newest socket was being returned.
  75. '
  76. '
  77. '
  78. '
  79. 'August 24, 2000 Release (Version 1.1.1)
  80. '
  81. '- Changes made to WindowProc Function Message Handle (uMsg):
  82. '    The base address was increased from 1025 to 4025 in order to
  83. '    avoid possible capture of an internal Windows message.
  84. '    Thanks to Jeremy Stein for helping out on this. This will
  85. '    be posted as Bug Resolution #0002.
  86. '
  87. '- Changes made to FD_CLOSE in WindowProc Function:
  88. '    I've added "TempUC.Disconnect wParam" before raising the
  89. '    PeerClosing Event, simply because if the remote end is closing
  90. '    the connect, we might as well too. This just takes a little bit
  91. '    control away from the user, in the respect that you will NOT NEED TO
  92. '    specify disconnect in your applications now, it is taken care of
  93. '    for you.
  94. '
  95. '    If anyone can see any problems with this, please let me know.
  96. '
  97. '    I should note that you will not need to change your existing code
  98. '    because of this. Although the Disconnect method can still be used
  99. '    in your PeerClosing Event, it is not needed.
  100. '
  101. '- Threading Changed:
  102. '    The threading for the control was updated to an Apartment Threaded
  103. '    model from a Single Threaded model, after an email from
  104. '    Stephan Strittmatter. His email was actually a possible bug report,
  105. '    regarding using the control in an ActiveX dll.
  106. '    This possible bug is labelled #0003.
  107. '
  108. '
  109. '
  110. '
  111. 'July 27, 2000 Release (Version 1.1.0)
  112. '
  113. '- Internal Cryption added. Check out the control's home page for detail.
  114. '
  115. '
  116. '
  117. '
  118. '
  119. '
  120. '
  121. '
  122.