Search code examples
c#internet-explorertoolbarbho

Force IE toolbar to always be active in C# BHO


I'm working on a small C# BHO and I'd like to be able to make sure the browser toolbars don't get disabled with a window.open(url,windowname,"toolbar=no"), and I'm wondering if theres a simple way to force that the toolbars stay enabled?

Failing that, another way to trigger the BHO would be needed, I think you can access context menus, can't you?


Solution

  • This is the sort of thing that, in general, you can't override. You can try using ShowBrowserBar, but if it doesn't work you will have to reconsider your design.