Hi,

I'm trying to create a procedure to cross reference procedures.

So far I've identified the following that need to be taken into consideration.
I'm sorry but I don't know how to indent the list properly. This is a copy/paste from MS/Word.
• = 1st level
o = indented once
 = indented twice.

Can anyone tell me if I've missed something please?

VMTIA ... Lisa


• Know where we are so we can get the procedure code
• Create a list of Defined variables from the procedure
o Dim
o Const
o Static
o Parameters
• Create a list of Used variables from the procedure code
• Filter out key words
• Create a list of available variables from the same module as the procedure
o Private Declare procedures
o Private variables
 Dim
 Const
 Static
o Private ENums
o Private Types
o Global/Public Declare procedures
o Global/Public variables
o Global/Public ENums
o Global/Public Types
• Create a list of Available variables in other modules
o Public Procedures
o Public variables
 Dim
 Const
 Static
o Public ENums
o Public Types
o Friend Procedures
• Create a list of Available procedures in the same module as the procedure
o Private procedures
o Public procedures
o Friend Properties
o Friend Procedures
• Create a list of Available procedures from other modules that do not use Option Private Module
o Private procedures
o Public procedures
o Friend Properties
o Friend Procedures
• Create a list of for other projects that are referenced by this project
o Public Procedures
o Public variables
o Public ENums
o Public Types