generate report of all functions called during a specific action [modified]
-
I am trying to find out what functions are called for each task of my program. The Visual Studio 2003 .NET solution consists of 8 projects, several hundred classes, and many functions. :(( I know I can just set a breakpoint and step through each line of code writing down each function I encounter but there ought to be an easier way. :) How should I go about this task as I have at least 20 actions I need to report? Example: I Select: File->New Report generates: function A, functions B, function D, etc. I Select: File->Edit Report generates: function A, functions C, function D, etc. I am open to ALL soultions. Thanks in advance
Michael If we knew what it was we were doing, it would not be called research, would it? --Albert Einstein
modified on Saturday, April 19, 2008 10:36 PM
-
I am trying to find out what functions are called for each task of my program. The Visual Studio 2003 .NET solution consists of 8 projects, several hundred classes, and many functions. :(( I know I can just set a breakpoint and step through each line of code writing down each function I encounter but there ought to be an easier way. :) How should I go about this task as I have at least 20 actions I need to report? Example: I Select: File->New Report generates: function A, functions B, function D, etc. I Select: File->Edit Report generates: function A, functions C, function D, etc. I am open to ALL soultions. Thanks in advance
Michael If we knew what it was we were doing, it would not be called research, would it? --Albert Einstein
modified on Saturday, April 19, 2008 10:36 PM
Do you just want to know what functions are in each file? The doc tool can do that. To find out what gets called during an execution, you'll need to use some kind of profiler: http://msdn2.microsoft.com/en-us/vcsharp/aa336818.aspx#profilers[^]
"Quality Software since 1983!"
http://www.smoothjazzy.com/ - see the "Programming" section for freeware tools and articles.