vbDoc Script


vbDoc Script is a Windows VBScript tool to generate JavaDoc-like documentation from Visual Basic source.

To Use

  1. Comment your code. The supported comments are found below.
  2. Run the script. Options are found below.
    cscript aspdoc.vbs %OUTPUT_PATH% %SOURCE_PATH% %ASPDOC_OPTS%
  3. View the documentation. Go to the %OUTPUT_PATH%\index.html.


Options

-v Verbose
-r Recursive
-a | A Include|Exclude .asp files
-f | F Include|Exclude .frm files
-b | B Include|Exclude .vbs files
-c | C Include|Exclude .cls files


Tags

'/** Start a documentation comment.
'/* Documentation comments following the start comment.
@return Return value of a function.
@param Parameter of a method.
@private Do not document this function.
@deprecated Deprecated


Example (with source code)