I have a function DetermineTree()
in a function library called Explorer.vbs
and another function with the same name, DetermineTree()
, in Datasheets.vbs
. From my Action I am calling a function that will eventually call DetermineTree()
. I want to specify that I want to call DetermineTree()
from Explorer.vbs
NOT the one from Datasheets.vbs
I realize that if i change the order the libraries are associated it will solve the issue but I am looking for a code fix to this problem.
in C# I think you can specify using dot notation, ex. Explorer.DetermineTree()