My VB (SP5) program starts an instance of IE (5.5) , browse to a site. The html of the web page consists of applet which formats a table to list out values. Now I want to read these values from the table. But since it is the applet which fills in the values, is it possible to read these values using the DHTML objects model. ie. statement such as
set doc = objIE.document
Set colTables = doc.body.getElementsByTagName("table")
Set htmlElm = colTables.Item(0).rows(0).getElementsByTagName("td")
strTemp = htmlElm.Item(1).innerText etc.

help is very much appreciated.