Enumerate Sub and Function Names

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I enumerate all the Sub and Function Names in my program for

1. Private and Class modules
2. Public and Private Subs and Functions

Thank you

Ross
 
Hi,
you can use modules collection to get all modules of application, and then
go through all lines of each module to get list of procedures
look at module object in online help for more info
 
Back
Top