| |
adminkoe
Posts: 117
Score: 0
Joined: 12/23/2000
From:
Status: offline
|
Don't use sendkeys, use the IE object to control the web page: Set ie = Script.CreateObject "InternetExplorer.Application") ie.Navigate "http://www.mypage.com"; do while ie.busy 'wait for document to finish loading loop ie.document.forms(0).UserName.value="springy" ie.document.forms(0).Password.value="pwd" ie.document.forms(0).submit Regards, Andi Zain
|
|