ICQ captures Webbrowser component beforenavigate event Programming Software Development by VIeditorlover Hi, I have an app working with webbrowser com component. There is an events handler for beforenavigate which modify URL if necessary and it I works fine except for computers where is installed ICQ. ICQ captures beforenavigate and "smartly" redirect to ICQ search engine, my handler is bypassed and nothing works. I would need a tip how … Modify HTML document before Rendering? Programming Software Development by tstkenny I've been searching for a solution for 2 weeks but no luck. I am using Vb2005. On windows.form1 I put 2 standard Webbrowser1 control2 as WB1 & WB2, then wb1.navigate(url). The target URL is a framed remote website. I want to get one of the frame to be displayed in my WB2.document. However, the frame I want has the following javascript … Re: timer in VB? Programming Software Development by selvaganapathy Use BeforeNavigate Event and NavigateComplete Event. Ex. Draw a Command Button (Command1) and PictureBox (Picture1) Draw WebBrowser Control (WebBrowser1) inside PictureBox [CODE=VB6] Private Sub Command1_Click() WebBrowser1.Navigate ("www.google.co.in") End Sub Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, URL As … Re: Internet Explorer Project which blocks all websites . Very Urgent Please Help Programming Software Development by vb5prgrmr This should get you started... [url]http://visualbasic.about.com/od/standalonevb6/l/blnewieinstance.htm[/url] However use the .Navigate instead of .Navigate2 method and to capture the user navigating to another site you will have to create a beforenavigate event. To see how to create such an event use a dummy project and add the webbrowser …