Dim myie As SHDocVw.InternetExplorer
Set myie = New SHDocVw.InternetExplorer
myie.Navigate "http://www.pageresource.com/html/table1.htm"
myie.Visible = True
'I get an error when I try to use this kind of statement to drilldown and get the specific cell within the document
debug.print myie.Document.childNodes(2).childNodes(1).childNodes(2).innerHTML
|