Trouble with SENDKEYS?

D

DW

Under XL 2003, I created a macro to open and navigate thru a web page using
ie6. Now, under XL 2007 (Standard), part of the macro works but the
inserting of data into fields does not. Any suggestions?

Set ie = CreateObject("InternetExplorer.Application")
With ie
.Visible = True
.navigate "http://www.smcorp.com"
.resizable = True
End With
Application.Wait (Now + TimeValue("0:00:05"))
SendKeys "MY DATA"
SendKeys "{TAB}"

Don
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top