Private Sub cmdProcessEvent s_Click()
strEventID = "Audit0001"
'This works:
Audit0001
'These do not:
Eval (strEventID)
Application.Run strEventID
End Sub
Private Sub Audit0001()
MsgBox "Here i am"
End Sub
strEventID = "Audit0001"
'This works:
Audit0001
'These do not:
Eval (strEventID)
Application.Run strEventID
End Sub
Private Sub Audit0001()
MsgBox "Here i am"
End Sub
Comment