I use this routine in my application:
Private Sub Befehl0_Click()
Dim objApp As New MapPoint.Application
Dim objFindResults As MapPoint.FindResults
objApp.Visible = False
objApp.UserControl = True
'Erstes Ergebnis der Suche ausgeben
Set objFindResults = objApp.ActiveMap.FindAddressResults("Römerstraße 12", "Düren", , , "52349", geoCountryGermany)
MsgBox "Das erste Element in der Ergebnisliste lautet: " _
+ objFindResults.Item(1).Name
objApp.Application.Quit
End Sub
But instead of the name of I would like to get back Lat/Lon. Is this possible?
Ralf