Displaying Same Explorer Bar for all the tabs in IE

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

Displaying Same Explorer Bar for all the tabs in IE
Displaying Same Explorer Bar for all the tabs in IE 
Anoop Kovoor




Posts: 19
Joined: 2012-11-06
Hello,

We are currently displaying different Explorer bars for different tabs using the following code. It works fine in this scenario.
if (this.Bars[0].BarObj == null)
{
object guid = Type.GetType(this.Bars[0].BarType).GUID.ToString("B");
IEApp.ShowBrowserBar(guid, true, null);
}

//Displaying the result in the side bar
this.Bars[0].BarObj.Visible = true;
(this.Bars[0].BarObj.Controls[0] as CustomPane).ResumeLayout();

Could you please let me know how to open the same Explorer (just one instance) bar across different tabs in IE similar to Favorites or History explorer bars?

Regards, Anoop
Posted 07 Aug, 2013 07:59:34 Top
Andrei Smolin


Add-in Express team


Posts: 19122
Joined: 2006-05-11
Hello Anoop,

Anoop Kovoor writes:
Could you please let me know how to open the same Explorer (just one instance) bar across different tabs in IE similar to Favorites or History explorer bars?


This is impossible to achieve.


Andrei Smolin
Add-in Express Team Leader
Posted 07 Aug, 2013 09:53:03 Top