Dim HTML As System.Windows.Forms.HtmlDocument = wb.Document
Dim HTMLI As HtmlElement
For Each HTMLI In HTML.GetElementsByTagName("td")
If HTMLI.InnerText = "abcde" Then
Dim doc As mshtml.IHTMLDocument2 = wb.Document.DomDocument
Dim child As mshtml.IHTMLDOMNode2 = HTMLI.DomElement
Dim domNode As mshtml.IHTMLDOMNode2 = doc
domNode.removeChild(child)
End If
Next