Hi, I managed to open the web site by using the
VB in Excel but I cannot send the keystrokes to the site(go directions), can anyone help.
Sub getdirection()
'log into csweb.tpg.com.au
Dim ie As Object
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.navigate "http://www.whereis.com/whereis/directions.do"
Do While ie.Busy And Not ie.ReadyState = 4:
Application.Wait (Now + TimeValue("0:00:02"))
DoEvents
Loop
ie.document.getElementById("addressStreetNo0").Val ue = "65"
ie.document.getElementById("addressStreetName0").V alue = "Waterloo Road"
ie.document.getElementById("addressSuburb0").Value = "Mosman"
ie.document.getElementById("addressState0").Value = "NSW"
Set ipf = ie.Document.all.Item("cmd")
ipf.Click