Excuse formy english
I have the following code:
Dim objApp As Application
Dim objFindResults As MapPointCtl.FindResults
Set objApp = CreateObject("MapPoint.Application.EU.13")
objApp.UserControl = True
objApp.Visible = False
Set objMap = objApp.ActiveMap
Set objFindResults = objApp.ActiveMap.FindAddressResults("Bizkaia", "Zarautz", , "Guipuzcoa", , geoCountrySpain)
MsgBox "The first item in the find list is: " _
+ objFindResults.Item(1).Name
But I need go to the number 2 of that street (Bizkaia) ?How can I do it with FindAddressResults???And how can I obtain the latitude and longitude of this direction?? Thank you in advance.
Iker