dotnet windows forms:
I can't seem to get the HTMLElement class to reference an object
When I try:
Dim HtmlElement1 As New HtmlElement
I get a "type ... has no constructors"
When I try:
Dim HtmlElement1 As HtmlElement
and I try to hook into it's click event it throws an exception of:
System.NullReferenceException: Object reference not set to an instance of an
object.
So how do I reference a html page in the webbrowser to the HtmlElement class?