Ok, allora inizierai prima di tutto ad estrarre le tabelle dal codice HTML ed a metterle in una collection facendo così:
Ora avrai tables(0), tables(1), tables(2) eccetera a seconda di quante tabelle ci sono nel tuo codice HTML.codice:Dim tables As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("table")
Individua quale è la tabella che ti interessa (ad esempio la numero 2), poi prendi spunto da questo codice:
Praticamente lavori con HtmlElement e HtmlElementCollection continuando ad estrarre i subdati dall HtmlElement precedentecodice:For Each ROW As HtmlElement In tables(2).All For Each CELL As HtmlElement In ROW.All .......... Next Next
Sergio