Community of MapPoint and Bing Maps Users and Developers
This is a discussion on Latitude/Longitude Address on Map within the MapPoint Desktop Discussion forums, part of the Map Forums category; Hi Hope someone could help, I have an access data base that has all my customer addresses on a Table ...
| |||||||
| Today's Posts | Twitter Feed | Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Latitude/Longitude Address on Map I have an access data base that has all my customer addresses on a Table and would like to add a latitude and Longitude to the table to pin point the customer location as I understand this is the best way to make sure customers don’t overlap each other, also it there a way or code to place on the event procedure on click of a button in Microsoft Access to export customer address and pin them on Map Point? I would like to be able to export more then on load number, for example each customer has a Load # (150) and Stop # (111) the load number represents a Truck and what I would like to do is in some way to export more then one load at time and map it on one click. If you could help it would be greatly appreciated. Thanks |
| |||
|
Hi, I'm not sure I understeand your question completely, but I understeand that you wants to program in VBA to display your customar locations on the map. I type example in C# because if I should do it in VB then I will type too many syntax errors There is a method: Code: FindResults results = mp.ActiveMap.FindAddressResults(street, city, othercity, region, zip, country); Code: if (results.ResultsQuality <= GeoFindResultsQuality.geoAmbiguousResults)
foreach (object o in results) {
Location Loc = o as Location;
if (Loc != null) {
Pushpin PP = mp.ActiveMap.AddPushpin(Loc, "");
return;
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz www.comfortsoftware.be MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
![]() |
| Tags |
| address, latitude or longitude, map |
| ||||
| Posted By | For | Type | Date | |
| | mapaddress.info | This thread | Pingback | 11-03-2007 10:16 PM | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to get latitude and longitude | ma2005pp | MapPoint Desktop Discussion | 3 | 09-28-2005 01:57 AM |
| Latitude and Longitude | virgilar | MapPoint Desktop Discussion | 1 | 03-21-2005 01:01 PM |
| Latitude and Longitude | Anonymous | MapPoint Desktop Discussion | 1 | 11-25-2003 12:52 PM |
| NMEA latitude/longitude and mappoint latitude/longitude | muurman | MapPoint Desktop Discussion | 3 | 11-22-2003 04:42 AM |
| Convert address to latitude/longitude | jia_1980 | MapPoint Desktop Discussion | 1 | 01-21-2003 04:42 PM |