Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Webpage data retrieval

Status
Not open for further replies.

ianclegg

IS-IT--Management
Aug 9, 2002
7
GB
Can you help,

I am wanting to get data from the wikipedia website relating to countys.

I am able to automatically search wikipedia and load the page concerned using the following code

Function FindCountyName(area)
On Error Resume Next
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate " + area

End Function
The parameter area is passed to the function from a record already existing in a table. The data that I require is held mainly in a table on the website giving data about the town or area concerned e.g. Dewsbury

I understand that I need to address the data using HTMLElements but I have no idea how to code this.

I would be grateful for any help or suggestions to fix my problem

Ian Clegg
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top