views:

615

answers:

4

Does anyone know of a tool to analyze/navigate VB6 source code like the tool from scitools?

http://www.scitools.com/products/understand/

+6  A: 

Maybe Project Analyzer is an alternative?
Also you could take a look at codesmart 2009 for VB6

Kb
+5  A: 
MarkJ
+1 for MZTools
Kb
If you're working with VB6, you **WANT** MZTools, even if you don't know it yet....
RolandTumble
Yeah, already using MZTools and also CodeHelper from PlanetSourceCode. Great tools.
Stecy
A: 

The SD Source Code Search Engine is a language sensitive tool for search across large bodies of source in VB6 (and it understands many other langauges, e.g, C, C++, C#, Java, COBOL, PHP, ... at the same time!).

It understands the structure of the langauge (identifiers, numbers, keywords, strings, operators, comments, whitespace) and lets you formulate queries for code constructs in terms of those entities. Because it understands langauge structure, it is isn't fooled by whitespace changes or line breaks, and this significantly reduces the number of false positive hits.

The Source Code Search Engine preindexes your source code base to provide extremely fast searches even over millions of lines of code. The Graphical UI shows hits on queries; from there, a single mouse click can show you the source code for hit. From the souce code, you can go directly into most editors.

Ira Baxter
+1  A: 

VBDepend is now available,it's NDepend like for vb6.

Issam Lahlali
Excellent! Thank you very much!
Stecy