In Excel 2003 you could use VBA code similar to the following to simulate the push of a button on a customized command bar.
CommandBars("Command Bar Name").Controls("Control Name").Execute
Is there a similar capability for an Excel 2007 COM Add-in that adds its own tab to the Excel 2007 ribbon?
I don’t want to modify or change anything on the add-in, I just want the VBA code to execute the add-in’s controls.
Thanks,