thanks it did help
i ran this code once
Code:
Dim myText As String = Me.WebBrowser1.Document.Images.Item.Count
MessageBox.Show(myText)
and got the number of Images.in my example 18
so then i ran this code once
Code:
For k As Integer = 0 To 17
Dim myText As String = Me.WebBrowser1.Document.Images.Item(k).OuterHtml.ToString
MessageBox.Show("image number" +" " + k.ToString + " " + myText)
Next
and i had 18 messageboxs shown and
one of them, number 14 in my case was the Image wanted
so now
i ran this code
Code:
Dim myText As String = Me.WebBrowser1.Document.Images.Item(14).OuterHtml.ToString
and it gives me the outterhtml of my image
so thanks again
for the fast and informative reply