Hello all,
I am trying to automate a series of repetitive commands from a web application. So I would very much appreciate it if someone can follow this through with me.
I got as far as opening a internet explorer though I would need to know the vba commands to navagate through the website(i.e. type in search box, selecting scroll down menu...etc)
Please see below for details and advise.
Many thanks

Regards,
Ed

Sub Google()
Set ie = CreateObject("internetExplorer.application")
'Set objshell = creatobject("wscript.shell")
With ie
.Navigate http://google.com/
.Visible = 1
End With

'wait a while until IE as finished to load
Do While ie.Busy
DoEvents
Loop