Is there a way to create a "per-browser" explorer bar in IE, that means an explorer bar common for all open tabs? The explorer bars created following MS guidelines are "per-tab", meaning that a new explorer bar is opened on each new tab. Alternatively, is there a way to display an HTML document inside one of the built-in "per-browser" explorer bars - "Favorites", "Feeds", "Discuss" etc.?
IE "per browser" explorer bar
295 Views Asked by Moshe At
1
There are 1 best solutions below
Related Questions in INTERNET-EXPLORER
- VBA, Internet Explorer and Javascript
- Inefficient driver.get() performance in Loops with IEDriver
- NEXT JS -unpecified error on ecternal calls
- Internet Explorer fails to launch via Selenium
- IE Mode Edge driver stuck on 'This is the initial start page for the WebDriver server' when running in Elevated Mode (Admin Mode) [Selenium]
- Can open new window in different browser?
- unable to get the right object to set the windowState
- Filters to apply for an application that can only run on IE compatibility
- How to accept popup message from Edge in IE mode Python - Selenium
- Does anyone know why i cannot see the source code of a website while in Internet Explorer mode in Microsoft Edge?
- Protected Mode settings are not the same for all zones (SELENIUM) (IE MODE IN EDGE)
- Browser Compatibility for WebTransport
- Internet Explorer don't POST
- Microsoft Edge API and IE Mode
- Close security screen alert Internet Explorer Pop-up using VBA and Windows API
Related Questions in INTERNET-EXPLORER-9
- Does anyone know why i cannot see the source code of a website while in Internet Explorer mode in Microsoft Edge?
- Check whether an Object contains a specific value in any of its array
- I wrote javascript with ES6, but It's not working in IE. How could I change old version of javascript
- How to make accordion compatible with IE9?
- Making Grid Layout work in Internet Explorer
- CORS issue between subdomain on IE
- Angular two way binding (different behavior in IE 9)
- Is there a command to open a new Ikognito Tab with IE by using VBScript?
- Google Address Api not displaying search result in IE9 but data gets populated to address fields
- Where does GoogleCreativeContainerClass come from?
- Internet Explorer not showing divs in a row correctly
- Recaptcha not compatible with IE9?
- Target `source` elements with jQuery in IE9
- vue js, IE9 click on the router link to refresh?
- Open programs from HTA application
Related Questions in MSHTML
- Determine if an IHTMLTxtRange object is visible
- How to get IHTMLDocument object to load an image?
- I got error in this line"If objHTML.parseError.ErrorCode <> 0 Then" & the error is 438 object doesn't support property or method
- VB.NET Incorrect HTML from Outlook Item .HTMLBody
- How to use IDM_SPELL or OLECMDID_SPELL with Trident/MSHTML
- Unable to retrieve contents of element id
- ABCPDF with MSHTML engine not loading .JPG files
- IOleCommandTarget IDM_BLOCKFMT doesn't work when changing windows locale to non-english
- How to setup font rendering in MSHTML
- What customizations do OLE and MSHTML support?
- Assigning IHTMLDocument2 instance to a TWebBrowser instance
- Load from IPersistMoniker takes long time to load unresolvable URL
- Web Scraping with VBA: collection of strong elements
- Scraping Data from Website using vba doesn´t work
- What are the currently supported CSS selectors available to VBA?
Related Questions in SHDOCVW
- In the wpf, I have the functionality to open the InternetExplorer using SHDocVw also to access the HTMLDocument. Need to have Microsoft Edge migration
- SHDocVw for .NET Core projects
- What is NewWindow2 and NewWindow3 in WebForm/WebBrowser
- SHDocVw works only with Win 10 x64 version
- SHDocVw InternetExplorer.DocumentComplete not working every time
- Does IE need to be installed to use shdocvw.dll?
- WebBrowser detect a file download event
- VB .NET SHDocVw.InternetExplorer: Windows Security popup
- How to change the top-left icon on a ShDocVW C# window
- Console Application prints when run directly, but not when run by a Service
- How to get children element of html tag from SHDocVw
- How to wait for SHDocVw InternetExplorerClass.DocumentComplete event in a C# unit test?
- Calling the ShellWindows FindWindowSW method in C#
- Open New Window In Current Web Browser Control With Submitted Data
- C# - mshtml and SHDocVw Complete Documentation
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is no built-in way of doing this. The extensibility model for Explorer bars dictates a 1:1 ration between Explorer bars and Tabs. The reasons for this are many, and often have to do with the easiest path for getting from IE6 to a modern webbrowser with Tabs. Think about the OLE based architecture: for starters, you have your site object, set by IObjectWithSite. You use the site to interrogate for things like IWebBrowser2, the current IHTMLDocument2, etc. Often extensions cache these pointers when they get them. Thus you want this 1:1 correspondence.
If you want to have a single instance explorer bar, you could do it, but it would involve re-parenting child windows cross process, and a whole bunch of BHO-based code to get IE's window state just right. You're better off making your state easily serializable, handling DWebBrowserEvents2::WindowStateChanged and faking it.