I need to find out how to reference a Subroutine within another module by a reference. This is what I am trying to do:
Module Mod1
sub_x(pass a reference to this module)
Private Sub close_me()
' do something here
End Sub
End Module
Module Mod2
Public Sub sub_x(get the reference to the passed module)
reference to passed module.close_me()
End Sub
End Module
Sub_x will receive calls from several different modules. All of the calling modules will have a close_me() subroutine. So I need to know which module is calling sub_x so I know which one to close.