Let's say I have this code in the module
ForumModule:
Public Sub wienerDog
Msgbox("Very long", "Dog")
End Sub
And this code in another module:
CallSub(ForumModule, "wienerDog")
If I place the cursor in the sub name in the first code block and find references, it finds the CallSub just fine. But if I place the cursor in the sub name in CallSub command I cannot find any references. (I also can't control-click it to jump to the
wienerDog sub, which would also be a nice feature to have.)