I have a function DetermineTree()in the function library with the name Explorer.vbsand another function with the same name,, DetermineTree()in Datasheets.vbs. From my action, I call a function that will eventually call DetermineTree(). I want to indicate what I want to call DetermineTree()from Explorer.vbsNOT the one fromDatasheets.vbs
I understand that if I change the order associated with the libraries, it will solve the problem, but I am looking for a code fix for this problem.
in C # I think you can specify the use of dot notation, for example. Explorer.DetermineTree ()
source
share