I have a huge project, roughly 15K lines of code, that I need to have optimized. Does anyone know of any tools that can analyze a VB Project and tell me when subs are being called? Thanks, Jeremy
Printable View
I have a huge project, roughly 15K lines of code, that I need to have optimized. Does anyone know of any tools that can analyze a VB Project and tell me when subs are being called? Thanks, Jeremy
Sounds promising but there isn't much information about it. Have you used it? Thanks, Jeremy
Ha ha haaaaa! I understand that. I just built this program a while back and commented it as well but I think that I'm calling this one function too many times and I wanted to know for sure. There are ways to just do find and see when but I didn't know if there was something that could help speed up the process. Thanks, Jeremy
What you want is called a profiler.
It tells you how much time is spent in each function/subroutine
and how many times each was called.
For modules that are called a lot, or require a long time to execute, you need to go in and tweak.
All of the ones I have seen cost dollar$
For instance: http://www.platformdev.com/vbprofiler.htm