Re: $$Excel-Macros$$ Internet Explorer

2011-10-27 Thread Sam Mathai Chacko
Use this instead. You don't have to add the library in this case. Sub FillInternetForm() Dim objIE As Object Dim theForm As Object Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate "http://www.oanda.com/currency/converter/"; objIE.Visible = True Do

Re: $$Excel-Macros$$ Internet Explorer

2011-10-27 Thread NOORAIN ANSARI
Dear Airen, Please add Microsoft HTML Liberary then run your code. Press Alt+F11 Tools-References-Check Microsoft HTML Liberary then press F5 Coding is correct On Thu, Oct 27, 2011 at 8:14 PM, airen wrote: > Hi Experts, > Please help me with this code > > Sub FillInternetForm() > Dim objI

$$Excel-Macros$$ Internet Explorer

2011-10-27 Thread airen
Hi Experts, Please help me with this code Sub FillInternetForm() Dim objIE As Object Dim theForm As HTMLFormElement Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate "http://www.oanda.com/currency/converter/"; objIE.Visible = True Do While objIE.busy