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();
}