Is there a way for me to specify that all Sub or Function invocations have to be explicitly prefixed by a module name?
For example, if Module MyModule contains
Sub MySub()
End
Then, when anywhere in the code (including MyModule) where today I use the line
MySub()
I want to be forced to use MyModule.MySub()
TIA
For example, if Module MyModule contains
Sub MySub()
End
Then, when anywhere in the code (including MyModule) where today I use the line
MySub()
I want to be forced to use MyModule.MySub()
TIA