Operator_Lookup with parameters

(EDIT NEVERMIND - GOT THIS WORKING)

Is there a way to have the Operator_Lookup take in an endless array of parameters

Public Function Operator_Lookup(name as string, ParamArray v() as Variant) as string return name+"("+v.ArrayToStrings()+")" End Function

And that way I can call it like this:

myObject.anythingYouWantHere("A","B","C")

Which would return a string like this: anythingYouWantHere(“A”,“B”,“C”)

Not that I’m aware of. Feature Request time? A work-around might be to stash the paramarray data somewhere the named Lookup would know where to find it. I’m using all Operator methods/functions a lot at the moment, so I’m very interested in any potential improvements :slight_smile: