[SOLVED] Export the Subs and Functions in a Visual Basic Solution

Issue

I am wondering if anyone knows a way to list out all of the functions and subroutines within a Visual basic Solution?

The short and tall of it is, I have to list out all of the commands in my program and there are literally hundreds of them now and no part of me wants to sit and rifle through the code for every single one.

Any ideas?

Solution

You can open all modules, classes and forms from the project as text files, and make a loop going through all the files, searching for "Sub" and "Function" and listing them.

Answered By – Alexander

Answer Checked By – Dawn Plyler (BugsFixing Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *