Hi,
then something else should be wrong. did you try a simple test like this? eventually with other addresses and so ? this is C# but you can easy translate it into VBA. Piece of code is tested:
Code:
int name = 1;
FindResults addrResults = MP.ActiveMap.FindAddressResults("churchilllaan", "Schoten", "", "", "", GeoCountry.geoCountryBelgium);
foreach (object o in addrResults) {
Location loc = o as Location;
if (loc == null)
continue;
MP.ActiveMap.AddPushpin(loc, name.ToString());
name++;
}