This is still a valid thread as I'm trying to do the same thing here in MS Excel 365 VBA.
When I use the Application.Run [name of macro here]
... I get the following msg ...
Run-time error '1004':
Cannot run the macro '[correct macro name]'. The macro may not be available in this workbook or all macros may be disabled.
The current syntax appears to be Application.Run([Macro], [Arg1], ... [Arg#])
Excel is ignoring the fact that the macro is declared as Public & contained in the same module (form's code) that I'm calling it from. The macro that I'm wanting to call, successfully runs & starts off this whole process. I can Call [hardcoded name of macro]
successfully ... but ... Application.Run [hardcoded name of macro]
... nor ... Application.Run [dynamically created string of the name of macro]
does not ... both giving the same error mentioned above.
I'm using a set of tabs to select data from a certain worksheet. Then after the data is saved, I want to refresh the listView as names may have changed or new items may have been added. So I need to refresh the list based on which "tab" (I'm using an image here) triggered the original click event. When the image is originally clicked, I'm saving an identifier to the label's tag above the listBox, indicating the source of the list.
The original list/click-event could be 1 of 7 different "tabs", so after the data is saved, I need to construct something based on the saved image.name that will trigger the correct click event to refresh the list.
I have been able to dynamically pass objects w/ ...
Name_Of_Frame.Object("img_" & image identifier here & "_Tab_pic)
So I tried something similar w/ ...
Name_Of_Frame.Object("img_" & image identifier here & "_Tab_pic).Click
... which returns an 'invalid method', despite it automatically capitalizing the 'C' in 'click', like it's an actual recognized method. I'm just guessing & grasping at straws here since there is no documentation on how to do this.
I'm getting the correct concatenated string for the name of the macro, as verified in a MsgBox.
I've even tried to proceed the macro name w/ the name of the form in-which it exists ... no joy there either.
... unknown amount of time has passed ...
What I have FINALLY come up with, was to create a separate macro & pass the image object ... as in the following ...
Dim refresh_tab_list As Object
Set refresh_tab_list = Controls("img_" & [stored tab identifier] & "_Tab_pic")
Call sel_Production(refresh_tab_list)
Set refresh_tab_list = Nothing
Private Sub sel_Production(obj_prod_cat As Object)
[do all the stuff here]
End Sub
Props to anyone that made it thru all my rambling & got down this far. I don't know if this specifically answers the OP's question, but our issues were similar. Maybe I didn't have the correct References selected or something, but given Application.Run
failed to work for me, this was the best work-around that I could come up with.