Tab changed event toolbar

Add-in Express™ Support Service
That's what is more important than anything else

Tab changed event toolbar
 
Colucci Brice




Posts: 1
Joined: 2010-12-31
Hi,

First, sorry for my bad english.

How do you catch a tab changed event in a toolbar?

In toolbar, I've a ToolBar_DocumentComplete event and a ToolBar_NewWindow2 event, but nothing about tab changing (I tested all of them).

But I found a TabChanged event in the module. How can I notify the toolbar when I catch it?

Thanks.
Posted 31 Dec, 2010 05:17:58 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Brice.

You can access the toolbar via the ToolbarObj property of the ADXIEToolbarItem class (see items of the Toolbars collection in the iemodule).
Please note, the TabChanged event fires if the Quick Tabs option is enabled in IE and the LoadInMainProcess property of the module is set to true.

What do you need this event for?
Posted 03 Jan, 2011 09:55:42 Top
Eugene Astafiev


Guest


Hi Colucci,

There is no such event in the IE toolbar project. Please use the IE add-on project wizard instead.

It looks like you are interested in the following events of the add-in module:

* OnTabActivated
* OnTabChanging
* OnTabChanged

Then you can access your toolbar from the add-in module class.
Posted 03 Jan, 2011 09:58:24 Top