Need Help! Webbrowser And New Recaptcha!

dragonrage01

Power Member
Joined
May 19, 2011
Messages
674
Reaction score
159
I'm using webbrowser control and I am having problems with the new recaptcha. I usually just download the image and then send it to decaptcher or deathbycaptcha service. Anyway I cant download the image for some reason.
You can look at the new recaptcha example in http://www.folkd.com/page/register.html

My problem is that I cannot download the image. I tried clicking on it first and then try to download the image but it does not work.
I tried using a timer but it does not work also.

If anyone have any ideas, I would really appreciate it.
Thanks in advance.
 
To download image simplest way is



Dim Client asnew WebClient
Client.DownloadFile(Source, Destination)
Client.Dispose
 
Back
Top