Hello,
I've been wondering why MapPoint 2006 doesn't recognize some zip codes that exist... For instance, 80923 (colorado springs, co) which exists on map quest but not in MapPoint. Furthermore, does anyone know how i can have my visual basic program look for City and State or Zip so that if the zipcode doesnt exist like above, I can still find the location using the city and state without making the program fail... Right now i am using the code:
objRoute.Waypoints.Add objMap.FindResults(DlrZip).Item(1)
objRoute.Waypoints.Add objMap.FindResults(CustZip).Item(1)
objRoute.Calculate
To find the distance from the dlr to the cust. I was wondering if I could do something similar to this:
objRoute.Waypoints.Add objMap.FindResults(DlrZip).Item(1)
objRoute.Waypoints.Add objMap.FindResults("City, State" or CustZip).Item(1)
objRoute.Calculate
Any ideas?
Thanks.