webbrowser control - right click link trouble 
Author Message
 webbrowser control - right click link trouble
Hi all,

I'm making my own browser with the web browser control, but when i make right click on a hyperlink this appear in a IE instance. I wanna take control on this and launch
my browser with this URL (right click hyperlink), how can I do it ?. My second question is in relation with first, in web pages like netscape news window are launched,
can I launch this page in my browser ??

Help please ...
Thanks in advance
mauro



Sat, 10 Jan 2004 03:51:26 GMT  
 webbrowser control - right click link trouble
Hi,

Mauro Velasco schrieb:

Quote:
> I'm making my own browser with the web browser control, but when i make right click on a hyperlink this appear in a IE instance. I wanna take control on this and launch

There are two ways how a HTML-page can open new windows: using the Target or using javascript:

Private Sub WebBrowser1_BeforeNavigate2(pDisp As Object, URL, Flags, TargetFrameName, PostData, Headers, Cancel As Boolean)

If TargetFrameName="_blank" Or Left(Targetframename, 1) <> "_" Then
    Dim frmNew as New frmBrowser
    frmNew.WebBrowser1.Navigate2 URL
    Cancel=True
End if

If Left(URL, 25)="javascript:window.open(" Then
    Dim frmNew as New frmBrowser
    frmNew.WebBrowser1.Navigate2 Mid(Url, 25, instr(25, URL, """")-25)
    Cancel=True
End if

End sub

HTH

Chris

--
Christopher Kleinheitz Offenburg Germany http://jahresarbeit.virtualave.net
"Der Dienst wird mit der dem Wesen des Eisenbahnbetriebs entsprechenden Raschheit, aber ohne berstrzung ausgefhrt" Dienstvorschrift 408 der Bahn



Mon, 12 Jan 2004 14:34:22 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. disable right click of WebBrowser control

2. Capturing right click event of webbrowser control

3. WebBrowser Control and Right Mouse Click

4. WebBrowser control right click on place in text

5. Modify right click menu on webbrowser control

6. Right-click on the WebBrowser control

7. Reduce or remove the right click menu in the webbrowser control

8. Disable Right-Click on WebBrowser Control

9. Stopping right-click in WebBrowser Control

10. Right click in WebBrowser Control

11. Answer: How to turn off right click functionality in the WebBrowser Control

12. Howto disable Right-click in Webbrowser control

 

 
Powered by phpBB® Forum Software