G
Guest
The following code gives me 'function not found'. According to the Help page
for Eval function, it should work?
Private Sub butRun_Click()
Dim strMod As String
strMod = "Gumbo"
Eval (strMod & "()") <========= fails here
End Sub
Private Function Gumbo() As Boolean
MsgBox "Gumbo"
Gumbo = True
End Function
for Eval function, it should work?
Private Sub butRun_Click()
Dim strMod As String
strMod = "Gumbo"
Eval (strMod & "()") <========= fails here
End Sub
Private Function Gumbo() As Boolean
MsgBox "Gumbo"
Gumbo = True
End Function