Originally posted by blindlizard
*** Oh, more ammendents to the Conventions. ***
In the Structured Conventions, add a line to the procedure header that is Author: with your full name, SF/VBForums username, and email.
Also, add a line Date: with the date you created the procedure.
Then if you edit someones code, add a line that says Edited By: and the same info as author, and a line that is Edited Date: with the date you made the changes. Finally a line that is Chages: explainations of what changed.

Example
VB Code:
  1. '****************************************************
  2. ' Purpose:   Locates the first occurrence of a
  3. '            specified user in the UserList array.
  4. ' Inputs:
  5. '   strUserList():   the list of users to be searched.
  6. '   strTargetUser:   the name of the user to search for.
  7. ' Returns:   The index of the first occurrence of the
  8. '            rsTargetUser in the rasUserList array.
  9. '            If target user is not found, return -1.
  10. 'Author: SomeName, SomeSFAccount, SomeVBForumsAccount, SomeEmail
  11. 'Date:  12/31/2002
  12. 'Edited By:  SomeOtherName, OtherSF, OtherVBF, OtherEmail
  13. 'Edited Date: 1/1/2003
  14. 'Changes:  Whatever I did goes here
  15. '****************************************************
Since this will be open source, may I suggest that you use the your SF email addr..... or not include the email at all, since it can be easily derrived from the SF user name (SF_UserName@sourceforge.net)