
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