I've been trying run a procedure from the clicks in the webbrowser in vb6. I would like to know if it is possible.
I am trying to do this:
WebBrowser1.Document.Write "<a href=""#"" onClick=""CopyToTextBox(""Hello World"")"">Hello World</a>"
Private Sub CopyToTextBox(ByVal msg as String)
TextBox1.Text = msg
End Sub
If not, is there any other way to do this?
Any help is appreciated. Thank you.