i get the picture on website, then i need my application auto text values of the picture...
can u help me with this problem??
this my code for get the image:
Code:Dim doc As IHTMLDocument2 = WebBrowser1.Document.DomDocument Dim imgRange As IHTMLControlRange = CType(doc.body, HTMLBody).createControlRange For Each img As IHTMLImgElement In doc.images If img.GetAttribute("src").ToString.Contains("image.php") Then imgRange.add(img) imgRange.execCommand("Copy", False, Nothing) PictureBox1.Image = Clipboard.GetDataObject.GetData(DataFormats.Bitmap) Exit For End If Next
My Problen on Thread
http://www.vbforums.com/showthread.p...54#post4111754


Reply With Quote