What I'd like to do is, click the button, and as it's running (or maybe
afterwards), see a list of all events triggered and/or all the procdures that
ran, in the order that the were triggered/ran.
Anyone know how this might be accomplished?
It does not give the history of subroutines having already completed their
execution, though, just the actual 'calling sequence'.
Sure, you can always get the history, if you insert a:
Debug.Print "subroutineName here -- start "
at the start of each of your subroutine where their start is to be tracked.
You can add a similar statement before each exit point if you want track
their ending point.
Vanderghast, Access MVP
"markmarko" <mark...@discussions.microsoft.com> wrote in message
news:EA0102A9-4F41-490F...@microsoft.com...
So simple... for some reason, I was fixated on some sort of built-in
functionality.
That would work nicely. Thanks!