here is a snippet of my code:set ie = createobject("internetexplorer.application")
ie.navigate me.website
while ie.busy
do events
wend
ie.document.forms(me.formnumber).item("username") = me.username
ie.document.forms(me.formnumber).item("password") = me.password...
Here is my batch file:
Q:
cd DIRECTORY
"FILE 1"
"FILE 2"
"FILE 3"
"FILE 4"
"FILE 5"
"FILE 5"
"FILE 5"
"FILE 6"
i AM GETTING the first file to open in excel, but the rest of them will not open. It will freeze on the first one, and not open the next one in the list until I close excel first...
Hi Folks. Here is some code to navigate automatically through IE in Visual Basic:Function FillGoogle()
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Navigate "http://www.google.com"
ie.Visible = True
While ie.busy
DoEvents 'wait until IE is done...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.