Re: GMAIL(Google Webmail) Login Problem (General questions)
Hi,
Did you try to use some HTTP/HTTPS analyzing tool and check what should be send to login to your gmail account?
You can try HttpFox for Firefox or IEWatch for Internet Explorer.
Please use this code to send cookies to server:
[code]Dim j as Integer
For j = 0 To http1.Response.Cookies.Count - 1
http1.Request.Cookies.Add http1.Response.Cookies(j).Name, http1.Response.Cookies(j).Value
Next j[/code]
Also you are running your code from inside Done Event. Done Event is good place to execute next command but code you are using there is running in a loop. When your code is executed for a first time again Done Event will be fired and same code will be executed again.
Let us know ho wit goes.
Regards,
Drazen











