Community of MapPoint and Bing Maps Users and Developers
This is a discussion on MapPoint Control VBA help within the MapPoint Desktop Discussion forums, part of the Map Forums category; Hi to all, I was hoping that someone on here may be able to help me with the VBA code ...
| |||||||
| Today's Posts | Twitter Feed | Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| MapPoint Control VBA help I have a spreadsheet (also see attached) as follows: Column A B C D E F Title Name Address City County Post Code Include (Just so that you are aware, I am working in MapPoint Europe not MapPoint North America.) In my spreadsheet there will be anything from 10 to 1000 addresses detailed in columns B-E (in attached I have only included 3). In Column F I have a “Tick Box” that is linked to the same cell that it is contained within. What I would like to happen “Tick” the box of those addresses that I want to be included on the map, then click a button (Map Opportunities) that will then plot all of the “Ticked” addresses in to MapPointControl (named MappointControl1 embedded in a userform1)) as a PushPin and have the information in Column A (Name) in a balloon attached to the pushpin. If this is possible and if you can help with any of this it will be greatly appreciated. Thank you in advance. Regards Arran |
| |||
| Re: MapPoint Control VBA help
Hi, Here is a little procedure in C# that plot the pushpin. You have to translate it into VBA. I don't know how to get the information from the sheet. Code: private void plotPushPin(string Name, string Address, string City, GeoCountry Country, string PostCode)
{
FindResults addrResults = MP.ActiveMap.FindAddressResults(Address, City, "", "", PostCode, Country);
Location loc = null;
foreach (object o in addrResults) {
loc = o as Location;
if (loc == null)
continue;
Pushpin pp = MP.ActiveMap.AddPushpin(loc, Name);
pp.BalloonState = GeoBalloonState.geoDisplayName;
break;
}
if (loc == null)
MessageBox.Show("Coordinates for " + Name + " not found");
}
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz www.comfortsoftware.be MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
![]() |
| Tags |
| control, mappoint, vba |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| bingmaps: Bing Maps Silverlight Control developer video.... @ChrisPendleton dives into the control http://bit.ly/4g9w96 | Bing Maps | Bing Maps Blogs & Tweets | 0 | 11-11-2009 03:51 AM |
| WPF and Mappoint Control | CSystem | Development | 1 | 06-05-2008 03:25 AM |
| Re: Keyboard control in mappoint activex control | djcapslock | MapPoint Desktop Discussion | 1 | 03-10-2005 10:16 AM |
| Using MapPoint Control for Web App | Attila | MapPoint Desktop Discussion | 1 | 01-11-2005 09:36 AM |
| MapPoint Control in ASP | technohippie | MapPoint Desktop Discussion | 2 | 11-22-2004 04:25 PM |