is it possible to login to sites like facebook,gmail using iwebbrowser2?
in the code below what can i add so that it can login to gmail(with ie8 as browser) using the username and password i put in a variable?
MyBrowser := CreateOleObject('InternetExplorer.Application') as IWebBrowser2;
MyBrowser.Navigate('http://mysite.com'..........???);
note : i am a newbie.
sorry for my english:)
and thanks in advance
You can use javascript ‘injection’ to control your site. By ‘injection’ I mean that once your gmail page is loaded you then construct a url in the form
or you can throw it all onto one URL
Your code would then look something like: