So for my Mule creator, I wanna make it less webbrowser GUI and more compact and smaller for everyone, so here is my code to show the image but for some reason it doesn't show it?

Am I using the wrong URL?

Code:
 If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then

                For Each Captcha As HtmlElement In WebBrowser1.Document.Images

                    If Captcha.GetAttribute("src").Contains("http://api.recaptcha.net/noscript?k=6Lc96AAAAAAAANG1YKnED8OpogYLWtLStAMGVvv-") Then


                        PictureBox1.Load(Captcha.GetAttribute("src"))

                    End If