I load an HTML document into a WebBrowser Control in Visual Basic 6.
There is a link something
<a href="something" onmousedown="return abc(this,'asd', 'AO',null,event)">
I want to invoke the onmousedown event programatically from VB
I've tried many things, including
doc.getElementsByTagName("a")(i).InvokeMember("MouseDown")
doc.getElementsByTagName("a")(i).RaiseEvent("OnMouseDown")
doc.getElementsByTagName("a")(i).MouseDown
but nothing seems to work.