Im trying to get information from webpage. (http://benwerd.com/lab/geo.php)
Im using the code:
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate "http://benwerd.com/lab/geo.php"
While ie.Busy
DoEvents
Wend
Me.txtlat = ie.Document.getElementById("xxxxxxx").... here is the info I can't get from the page. Can't find the id or element that hold the information, latitude, longitude ... that is listed in the website.