Cancel Click on DHTML Edit Control
I'm using this sub to set cancelbubble and returnvalue to false and true respectively.
Private Sub HTMLDisplay_onclick(ByVal sender As Object, ByVal e As System.EventArgs) Handles HTMLDisplay.onclick
HTMLDisplay.DOM.parentWindow.event.cancelBubble = True
HTMLDisplay.DOM.parentWindow.event.returnValue = False
End Sub
But no dice. I've tried setting these values in both onmousedown and onmousedown which both fire before the onclick but again nothing seems to stop it. Can anyone throw me a bone here?
Cheers

