Dim Images As HtmlElementsCollection ' Or something
Images = WebBrowser1.Document.GetElementByTagName("img") ' Or something xD
For Each Img As HtmlElement In Images
Listbox1.Items.Add(Img.GetAttribute("src")) ' Or something :P
Next

Dim vv as integer = 0
Dim htmlDocument As HtmlDocument = Me.WebBrowser1.Document
Dim htmlElementCollection As HtmlElementCollection = htmlDocument.Images
Dim Img1 As HtmlElementCollection
Images = WebBrowser1.Document.GetElementsByTagName("img")
For Each Img As HtmlElement In Img1
ListBox1.Items.Add(Img.GetAttribute("src"))
Next
vv = ListBox1.Items.Count
Label1.Text = vv & " " & "Images"
Label1.ForeColor = Color.Green
