VB.NET rookie here,
Is there any way to handle an HTML object being clicked inside of a web browser control? The closest I've managed to get is with a mouse-down event handler for the browser which writes the position of the mouse, but I have no way getting information about what html object was clicked.
Private Sub myWB_mouseDown(ByVal sender As Object, ByVal e As HtmlElementEventArgs)
If e.MouseButtonsPressed = Windows.Forms.MouseButtons.Left Then
'mousedown event
Debug.WriteLine(e.ClientMousePosition)
End If
End Sub
HtmlElement(it can be tricky, though). Update the question when you find the next (apparently) odd behaviour.