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 |
|
Andrei Smolin
Posts: 18547
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 |
|