How to control a explorer bar in extension?

I wrote a IE extension include a toolbar and a explorer bar, how to control the explorer bar from toolbar show or hide it, set URL, etc ...



Answer this question

How to control a explorer bar in extension?

  • foobarX

    thank you very much, I will try

  • Vagif

    I wrote a IE extension to moniter the containt of IE, I want show some special information in a side bar (explorer bar) when user did some special action.
    So, I have to control the appearence of explorer bar and it's containt.

    Thnak you


  • leonlai

    Hi

    Search msdn for showbrowserbar method (IWebBrowser)

    If you want it to be displayed when the browser starts, regardless of the user preference, use this method in a satelite BHO.

    If you want your toolbar to be dispalyed after a web installation, take them to a page on your web server where you can call the showbrowserbar with javascript. (the client will need to have enabled scripting of the web browser in their security settings). A more universal approach would be to just give them instructions on using the toolbar context menu to select the toolbars they want to display.

    DO NOT write to the ITBarLayout, like the Google and Del.icio.us toolbars do.... this will overrite any user toolbar customization preferences.

    Forcing your toolbar to be shown on startup of the browser will not be very user friendly. The user should retain the option of displaying the toolbars of their choice. There have been alot of complaints about this behaviour in the IE7 forum, and many users have mistaken this behaviour as a feature of IE7. Do no evil!

    Regards.



  • RossDempster

    thank you very much, I know how to show and hide a explorer side by by a toolbar button,
    But can you tell me how to do it in my IE toolbar (IE extension wrote by myself)



  • 2162

    control what do you want to do

  • Eswans2000

    thank you for reply, it does work, but I want ask: how to control explorer bar programmly



  • Cute_Celina

    Have a look at:

    http://msdn.microsoft.com/library/default.asp url=/workshop/browser/ext/tutorials/button.asp

    Let me know if you get it working...I couldnt.



  • Spangltk

    Hi,

    Send us your explorer bar dll and I will package it for you with a toolbar button to toggle its view. I have written the utilities to generate inno setup scripts for this purpose, but these are still in a beta phase.

    See my examples at http://www.iecustomizer.com/ url=iepanels

    Regards.



  • How to control a explorer bar in extension?