-
When using the WebBrowser control, is there a way to intercept what the mouse is going over if you're looking at a page? Like if you pass the pointer over a link. I have a label on my form that I want to display a link addy in (like the thing that exists in IE).
Also, when you right click inside the WebBrowser control, you'll see the standard IE popup menu. Can I do something to add something into it? I want to add a thing to start downloading a file and bypass all that dialog junk. I know how to do that, just not how to add to the popup menu (if possible). Ultimately, I want to be able to right click on a link in the WebBrowser control, see the link addy appear in that label as the mouse passes over it, and be able to select "Download This" (or whatever I call it), and just start it off.
-
Q1:
Code:
Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
Label1.Caption = Text
End Sub
Q2:
http://msdn.microsoft.com/downloads/...zer/sample.asp
or
http://support.microsoft.com/support.../Q183/2/35.ASP
-
<?>
Not sure but you may want to look at this. It is a good app on controlling MSIE from within your app.
Go Here