Find timer associated with action

I’m reviewing some code, and can’t seem to figure out how one can find the timer associated with an action in the debugger. For example, I have:

Fred_Action(Sender as Xojo.Core.Timer)

at the head of a method in the debugger, but can’t determine which timer of many fires this action.

Is there some debugger function I’m missing? TIA.

search you code for

 AddressOf Fred_Action

which should find line(s) like

AddHandler MyTimer.Action, AddressOf Fred_Action

where mytimer is what you are looking for

as to “which of many”… it could be ANY/ALL timers with that addhandler

Of course - thanks!