View Single Post

  #2 (permalink)  
Old 01-09-2005
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,112
Hi,

Try this one (if this is what you wants, witch I think):
Code:
            FindResults Results = MP.ActiveMap.FindAddressResults(street, city, othercity, region, zip, country);
            if (Results.ResultsQuality == GeoFindResultsQuality.geoFirstResultGood) {
                object o = 1;
                Location Loc = (Location)Results.get_Item(ref o);
                Pushpin PP = MP.ActiveMap.AddPushpin(Loc, "");
                PP.GoTo();
            }
Reply With Quote