
What Function/Sub am I in.
Is there a way using
VBScript to determine what the name of the function is
that is executing? It would be useful for customized error handling.
Something like:
function f1()
strFunctionName = me.name
end fucntion
JavaScript has the following:
- caller property
- arguments.callee
Does VBScript have an equivalent?
Thanks,
Doug