Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Accessing a proprietary toolbar in Excel 1

Status
Not open for further replies.

jazminecat23

Programmer
Mar 16, 2007
103
US
Hi all - I've been working on a module in excel to run some procedures using an add-in we purchased for Excel called Spreadsheet Server. This program adds a toolbar to Excel. I need to figure out how to 'push' a button on that toolbar using VBA. Recording a macro of it doesn't work - I get an empty module. Same goes for recording a macro accessing the Spreadsheet Server Menu item on my main Excel menu.

Does anyone have any ideas? The menu item is two to the right of the Help menu item - after the Adobe PDF menu item.

crossing fingers!
 




Hi,

In Tools/References can you find a reference to Spreadsheet Server ANYTHING?

Skip,

[glasses] [red][/red]
[tongue]
 
I actually contacted the manufacturer, and he said I can run that using this:

Application.Run ("ExpandDetailReports")

I haven't tested it yet. I'm stuck on the fact that Calculate is only calculating my one main sheet, and not all the sheets in the workbook.

For the record, it is listed as "SServer - for JDE". It was not checked. Is there something I need to do (check it for example) to make it available in VBA?

thank you so much. I could never do this without your guidance.
 



Yes, check it in the References. The open the Object Browser and browse ONLY that reference's objects to determine if they might include the toolbar objects or anything else that might be useful.

Skip,

[glasses] [red][/red]
[tongue]
 
Cool. ExpandDetailReports is in there. So this is where I can go to access the other actions that this addin program can do. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top