Have anyone experience this kind of problems, whenever calling the Navigate(url), Internet explorer ask for content blocking , and open the url in the IE windows not the application webbrowser, Thus all the browsers event cannot be handled.
The web browser is as of .Net 1.1
regards

Webbrowser controls doesn't work on Windows XP SP2
Jennifer Bhamoo
BigT4446
?Import Microsoft Web Browser component to VS .NET 2003 project by clicking Add/Remove Items in the Toolbox / Windows Forms context menu and importing COM Components / Microsoft Web Browser.
?Double-click Microsoft Web Browser from Toolbox to add it on the form. It now works! You can change URL with e.g.
Object o = null;
axWebBrowser1.Navigate("http://localhost:8080/", ref o, ref o, ref o, ref o);
?To make changes to the web browser component, interface and implement interfaces IOleObject, IOleClientSite, IDocHostShowUI, IDocHostUIHandler. Make own files for them and add content. Also implement IOleClientSite, IDocHostUIHandler methods in the form. Then make your own MsHtmlCustomization.dll.
oRun always from Visual Studio .NET Command Prompt. (See Start Menu.)
omidl MsHtmlCustomization.idl /tlb bin\MsHtmlCustomization.tlb
otlbimp bin\MsHtmlCustomization.tlb /out:bin\MsHtmlCustomization.dll
oAdd Reference to Solution Explorer for the new DLL.
I don't know if doing everything above is necessary, but you get the picture Good luck!
Tim Daley
Clive Townsend
meatago
Reagsr,
Parimal.
rob_a89
Corby
<a href="http://msdn.microsoft.com/workshop/author/dhtml/overview/xpsp2compat.asp">http://msdn.microsoft.com/workshop/author/dhtml/overview/xpsp2compat.asp</a>
Robin Charisse