|
FindVar
FindVar is a Visual Basic programming tool.   It searches a Project VBP for all of the variable names used in the program.   It has been modified over the years to include lists of all of the Forms, Functions & Sub-Routines as well as the Constants & Variables. It makes five separate lists.   Each list Hi-Lites the object of the list in Blue.   In addition, if there are any duplicate names, the duplicates are Hi-Lited in Red.   Separator lines are printed after every 5th item in the list.   Each list is sorted alphabetically in ascending order.   Below is the sorted Variable list. 1)   It lists all of the Forms used in the project (*.Frm, *.Bas, etc). 2)   Next it lists all of the Functions. 3)   The 3rd list is a listing of all of the SubRoutines. 4)   The 4th list is all of the Constants. 5)   The last list, shown above, is the Variable list. A list of all Variables would be handy in itself.   This program also includes the File Name and Sub-Routine where the Variable is declared as well as HOW it is declared (Dim, Public, etc) and what TYPE of Variable it is (Boolean, Long, etc). If you are trying to think of a name for a Variable, you can check the list to see what names you have already used.   I find it very useful for weeding out duplicate declarations of Constants, Variables and Functions, especially after adding Forms, Modules, etc from other projects. |