How do I programmatically add a toolbar (with buttons on it) to Excel (2002 or later)?
When the button is clicked I want a handler to create my COM object and call a method on it?
|
|
|
|
|
|
|
This is the basis for something that should work on versions up to but not including Excel 2007, which has a completely different interface. This goes in your ThisWorkbook module:
And this can go in the same module or a separate one, your choice, although I prefer to put it in its own module where it can be more visible. YOu shouldn't need an OnClick, the button is told what routine to call when you create the button.
|
||||
|
|
|
Probably the easiest way is to write an Excel add-in that creates a toolbar with your button and COM-calling code, then drop the .xla file you create in the user's XLStart folder. |
||
|
|