Function DocContains(ByVal Criteria As String) As Boolean
Dim wb As New WebBrowser
wb.Navigate("http://www.google.com")
Dim HTMLContent As String = wb.DocumentText
If HTMLContent.Contains(Criteria) Then
Return True
Else
Return False
End If
End Function
This is really not clear. Do you know the web page that the image might be on How would the image in your app be in the web page You need to provide further details.
if somthing exists
Constantijn Enders
R. Muti
Private
Function DocContains(ByVal Criteria As String) As Boolean Dim wb As New WebBrowser wb.Navigate("http://www.google.com") Dim HTMLContent As String = wb.DocumentText If HTMLContent.Contains(Criteria) Then Return True Else Return False End If End FunctionRajeeshun
ThEpRoPhEcY373