Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Output code comments to documentation 1

Status
Not open for further replies.

RBSTR

Programmer
Nov 10, 2005
71
GB
Hi
I would like to produce some sort of documentation of some of my code.
Is there a tool (free preferably) that would, for example, scan my VB6 project and output my code comments to a document/clipboard?
I understand something similar can be done in Visual Studio 2005 using XML comment (
 

If you want to get comment lines from your code, you can write pretty simple app to do so in VB 6. Form1.frm is nothing more than simple text file, you can open it in Notepad if you want to.

If your comments are on separate lines, you can:
Code:
Dim strTextLine As String
Open "C:\VBProject\Form.frm" For Input As #1
Open "C:\VBProject\Comm.txt" For Output As #2

Do While Not EOF(1)  
   Line Input #1, strTextLine
   If Left(Trim(strTextLine), 1) = "'" Then
        Print #2, Mid(Trim(strTextLine), 2)
   End If
Loop

Close #2
Close #1

Have fun.

---- Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top