This problem is driving me nuts.
I can only get a random captcha to the picture box and not the actual one
I can only get a random captcha to the picture box and not the actual one
Code:
ublic Function vcaptcha()
If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
For Each Captcha As HtmlElement In WebBrowser1.Document.Images
If Captcha.GetAttribute("src").Contains("/cimg?") Then
PictureBox1.Load(Captcha.GetAttribute("src"))
End If
Next
End If
End Function