A
Andy B.
I have the following function stub:
Public Function LiveConditionsToHtml(ByVal LiveConditions as
Weather.LiveWeatherData) as HtmlElement
end function
I need to create an HtmlElement "table". When I do something like:
dim Table as new HtmlElement("table")
I get 'The type HtmlElement has no constructer'. When I do this:
dim Table as HtmlElement
I get 'The variable 'Table' is never used'. How do I fix this problem?
I am trying to create an HtmlElement and return it to the code so it can be
added to the browser.document.body property. GThis has to be done
disconnected from the browser document.
Public Function LiveConditionsToHtml(ByVal LiveConditions as
Weather.LiveWeatherData) as HtmlElement
end function
I need to create an HtmlElement "table". When I do something like:
dim Table as new HtmlElement("table")
I get 'The type HtmlElement has no constructer'. When I do this:
dim Table as HtmlElement
I get 'The variable 'Table' is never used'. How do I fix this problem?
I am trying to create an HtmlElement and return it to the code so it can be
added to the browser.document.body property. GThis has to be done
disconnected from the browser document.