Modify right click menu on webbrowser control 
Author Message
 Modify right click menu on webbrowser control
Hi all,  I'm usign web browser control and wanna modify the menu (right click on a hyperlink  - webbrowser control) someone know how can I do that ?

Please help...
TIA
Mauro



Sat, 31 Jan 2004 06:34:00 GMT  
 Modify right click menu on webbrowser control
Try the following....

Private WithEvents eDoc  As HTMLDocument     'Event handler for document

....

Set eDoc = WebBrow.Document   'After navigation is complete

...

Private Function eDoc_oncontextmenu() As Boolean

UserControl.PopupMenu mnuNotepadEditor

End Function

The code was pulled out of a usercontrol wrapper for the MSHTML editor.

Dave


Quote:
> Hi all,  I'm usign web browser control and wanna modify the menu (right

click on a hyperlink  - webbrowser control) someone know how can I do that ?
Quote:

> Please help...
> TIA
> Mauro



Tue, 03 Feb 2004 00:52:29 GMT  
 Modify right click menu on webbrowser control
Thanx David .... it helped me too.....


Quote:
> Try the following....

> Private WithEvents eDoc  As HTMLDocument     'Event handler for document

> ....

> Set eDoc = WebBrow.Document   'After navigation is complete

> ...

> Private Function eDoc_oncontextmenu() As Boolean

> UserControl.PopupMenu mnuNotepadEditor

> End Function

> The code was pulled out of a usercontrol wrapper for the MSHTML editor.

> Dave



> > Hi all,  I'm usign web browser control and wanna modify the menu (right
> click on a hyperlink  - webbrowser control) someone know how can I do that
?

> > Please help...
> > TIA
> > Mauro



Wed, 04 Feb 2004 05:51:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. How to modify the Short Cut Menu (right click) for TextBox Control

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

3. Modifying existing right-click menus on MailItem

4. Modify right click menu for shapes..

5. Disabling the right-click menu on a WebBrowser component

6. Disable Right-Click Menu on WebBrowser

7. Disabling Right-Click Menu on WebBrowser

8. disable right click of WebBrowser control

9. Capturing right click event of webbrowser control

10. WebBrowser Control and Right Mouse Click

11. WebBrowser control right click on place in text

12. webbrowser control - right click link trouble

 

 
Powered by phpBB® Forum Software