G
GB
Is there a way to call a function from a string instead of calling the
function explictly?
For example:
dim fooStr as string
fooStr = "foo1"
' The question:
' Can I call foo1 by passing the string value contained in fooStr?
function foo1() as string
return "foo1's value"
end function
function foo2() as string
return "foo2's value"
end function
function explictly?
For example:
dim fooStr as string
fooStr = "foo1"
' The question:
' Can I call foo1 by passing the string value contained in fooStr?
function foo1() as string
return "foo1's value"
end function
function foo2() as string
return "foo2's value"
end function