Dim htmlDocument As HtmlDocument = Me.WebBrowser1.Document
Dim htmlElementCollection As HtmlElementCollection = htmlDocument.Links
Dim link2 As HtmlElementCollection
link2 = WebBrowser1.Document.GetElementsByTagName("href")
For Each img As HtmlElement In link2
ListBox1.Items.Add(img.GetAttribute("href"))
Next
Dim Links As HtmlElementCollection = WebBrowser1.Document.GetElementByTagName("a")
For Each Link As HtmlElement in Links
Listbox1.Items.Add(Link.GetAttribute("href").ToString)
Next

Dim htmlElementCollection As HtmlElementCollection = htmlDocument.All
Dim link2 As HtmlElementCollection
link2 = WebBrowser1.Document.Links
For Each img As HtmlElement In link2
varto = ListBox1.Items.Count
ListBox1.Items.Add(img.GetAttribute("href"))
Label2.Text = varto & " " & "Links"
Label2.ForeColor = Color.Green