J
Jag Man
In many languages you can work with pointers to functions, allowing you to
"parameterize" your code with regard to the functions that get called.
Is there a facility to do this in VBA? For example, I'd like to do something
like this:
Sub functionOne( ByRef theFunction())
....
theFunction()
....
End Sub
TIA
Ed
"parameterize" your code with regard to the functions that get called.
Is there a facility to do this in VBA? For example, I'd like to do something
like this:
Sub functionOne( ByRef theFunction())
....
theFunction()
....
End Sub
TIA
Ed