Problem using CodeComment Report

imranIBM

Member
Joined
May 17, 2005
Messages
9
Programming Experience
3-5
I am using VBCommenter to add comments to my code.
When I see the html report in the browser, it does not show description or summary of any subs or methods. I also want to see description of each input parameter in subs.
For eg:
''' <summary>
''' This is sumary info
''' </summary>
''' <param name="objExtranetUser">Object of Type Extranter User</param>
''' <param name="strOriginalSubject">Original Email Subject</param>
''' <remarks> This is remarks
''' </remarks>
''' <history>
''' [iaquil] 9/20/2005 Created
''' </history>
I cannot see description "Object of Type Extranter User" of parameter "objExtranetUser".
Thanks
Imran
 
The "build comment web pages" tool in VS2003 is practically useless.
Use NDoc instead, it takes the VBCommenter generated xml files.

You also probably know by now that VS 2005 (Express) has built-in support for the documentation comments/xml-output that VBCommenter provided for VS2003/VB, it does even support intellisense/object-browser for this user documentation.
 
Back
Top