How many items should generally be listed in the call stack at any one time? Is it a list of everything that has been called so far in the program, or what is currently active? I've read through the help file and am not sure on either point.
Printable View
How many items should generally be listed in the call stack at any one time? Is it a list of everything that has been called so far in the program, or what is currently active? I've read through the help file and am not sure on either point.
I think that there was just a lengthy discussion about that here. Try a search for call stack.
The call stack shows what subs/functions are current.
It show what functions are still 'open' at the point you look at the stack.
It is not a list of all subs/functions that have ever been called.