How to focus on add-in Tab in Office 2007

D

Dwipayan Das

Hi All,

I have created my Excel addin using VS2005 ,The addin is
creating one new CommandBar with some command buttons onstartupComplete
event.My users are using this in Excel 2003 and it is working nice.

Case Excel 2007: When a user launch a new Excel application from
start->Program->MS Office->Excel they are not able to see my CommandBar on
startup.

Every time they have to click on Add-in Tab on
Excel 2007 to see my CommandBar .

Is there any way where on Startup i can make the focus to Add-in Tab ?



Thanks

Das
 
H

Homey

Sendkeys only way. like maybe

Sub Auto_Open()
SendKeys "%x{esc 2}"
End Sub

| Hi All,
|
| I have created my Excel addin using VS2005 ,The addin is
| creating one new CommandBar with some command buttons onstartupComplete
| event.My users are using this in Excel 2003 and it is working nice.
|
| Case Excel 2007: When a user launch a new Excel application from
| start->Program->MS Office->Excel they are not able to see my CommandBar on
| startup.
|
| Every time they have to click on Add-in Tab on
| Excel 2007 to see my CommandBar .
|
| Is there any way where on Startup i can make the focus to Add-in Tab ?
|
|
|
| Thanks
|
| Das
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top