S
senderj
I am writing a marco to put a html table into cells. I am able to
Set doc_tables = ie.Document.getElementsByTagname("table")
Set tab_rows = doc_tables(7).getElementsByTagname("tr")
But I hit an error when trying to
Set tab_cells = tab_rows.getElementsByTagname("td")
Where can I read more about this kind of coding? Is this called
ActiveX object DOM?
Set doc_tables = ie.Document.getElementsByTagname("table")
Set tab_rows = doc_tables(7).getElementsByTagname("tr")
But I hit an error when trying to
Set tab_cells = tab_rows.getElementsByTagname("td")
Where can I read more about this kind of coding? Is this called
ActiveX object DOM?