[vba]
Sub BeginItAll()
Dim functionName As String
functionName = "doSomething"
Application.Run functionName, "and some arguments here"
End Sub
Sub doSomething(theArgument As String)
MsgBox theArgument
End Sub
[/vba]
[vba]
Sub BeginItAll()
Dim functionName As String
functionName = "doSomething"
Application.Run functionName, "and some arguments here"
End Sub
Sub doSomething(theArgument As String)
MsgBox theArgument
End Sub
[/vba]