Internet Explorer can be automated just like Word or Excel. Most automation is done using IWebBrowser2 interface. Getting hand on a IWebBrowser interface is easy. It is enough to call CreateComObject, passing the Internet Explorer ID. This will create a new instance of Internet Explorer:
FWebBrowser := CreateComObject(CLASS_InternetExplorer) as IWebBrowser2;
Once the instance is created (A new
↧