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
294 Views Asked by Moshe At
1
There are 1 best solutions below
Related Questions in INTERNET-EXPLORER
- How do I wrap text in a pre tag for Internet explorer?
- How do I extract info from crunchbase
- Jquery on submit ajax post needs two clicks in IE
- SSL certificate error 403.13 in IIS 7.5
- Hiding Script Errors popups in IE8
- Internet explorer 11 browser cannot display the expires value of the session cookie from my app
- Internet Explorer hover/rgba/opacity/css3 compatibility
- How to wait for a java applet to load when automating Internet Explorer?
- Javascript Event.originalEvent.path IE8 error
- cursor: copy not working in Internet Expoler
- input[type="submit"][disabled] not working for IE8
- Auothotkey: Remove string, placement string in subject box
- Why does IE show junk for my dasBlog blog?
- Lag in scrolling behavior on IE 10 and IE Edge modes
- Using angularJS click on enter form functionality in Internet Explorer
Related Questions in INTERNET-EXPLORER-9
- Internet Explorer hover/rgba/opacity/css3 compatibility
- show a div with jQuery if the user is on IE 9 and below
- PDF cannot be seen on IE11/10/9 recently
- Table cells shifting in IE9
- IE9: rotated background images become skewed
- Line: 5571 Error: Not enough storage is available to complete this operation
- IE9 displaying selected items even when selected=""
- IE9 stripping opening HTML tags in AJAX response
- CSS: How to set up gradient background cross browser (only missing IE8 and IE9)
- CSS: How to set up border radius cross browser (only IE8 and IE9 missing ?)
- IE9: removing "dirty" round corners
- Internet Explorer 9 and angular-file-upload not working properly
- 'not' css selector in ie9
- Add Class to parent, jquery and IE9
- Finding parent element in IE9
Related Questions in MSHTML
- DispHTMLInputElement cannot read type of element in windows 8/10
- MSHTML PasteHTML() produces
- MSHTML appear on editing
- 7 IHTMLElements - What is their difference?
- Take screenshot of div in InternetExplorer
- Document Complete Event Is not Raising in Internet explorer 11
- ExecCommand CreateLink and IMG
- MSHTML: Call a function when DOM is ready, but before javascript is evaluated
- how to bind event to an element which was stopped propagation by javascript using mshtml
- Failing while trying to read content from URL via InternetExplorer in C#
- Capture Modal Dialog object using MSHTML/IExplorer
- What is the best way to deal with kludgy interface hierarchies (MSHTML)?
- How do I add an event listener using MSHTML's addEventListener in IE9?
- Is there an event that fires when DOM is modified in MSHTML IE8?
- .net document write with mshtml
Related Questions in SHDOCVW
- How can I maximize an IE window created by VBA with SHDocVw.InternetExplorer command?
- Why SHDocVw.InternetExplorer instance Count in ShellWindows are different?
- Document Complete Event Is not Raising in Internet explorer 11
- Access denied when closing folder using SHDocVw
- Failing while trying to read content from URL via InternetExplorer in C#
- clear browser session and cookies using c#
- Retrieving the "highest level frame" from SHDocVw WebBrowser control
- deploying a winform application using clickonce and iis fails
- IE "per browser" explorer bar
- Identify all open System/Special Folders
- What is NewWindow2 and NewWindow3 in WebForm/WebBrowser
- Error while using SHDocVw.InternetExplorer in C#2.0
- c# using SHDocVw.InternetExplorer. How can I find the URL of the last link clicked? Or the most recent get request URL?
- Error looping over ShellWindows
- Need a way to distinguish between ShDocVw.InternetExplorer tab objects
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 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.