MapPoint Forums

MapForums

Community of MapPoint and Bing Maps Users and Developers




MapPoint Control VBA help

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 ...


Go Back   MapPoint Forums > Map Forums > MapPoint Desktop Discussion

Today's Posts Twitter Feed Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-02-2010
Junior Member
White Belt
 
Join Date: Jan 2010
Posts: 7
MapPoint Control VBA help

Hi to all, I was hoping that someone on here may be able to help me with the VBA code to be able to do the following as I am struggling with it.

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
Attached Files
File Type: zip MapPoint Control v3.zip (376.6 KB, 3 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 02-08-2010
Senior Member
Black Belt
 
Join Date: Nov 2004
Location: Belgium
Posts: 2,389
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");
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
control, mappoint, vba


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

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


All times are GMT -5. The time now is 05:11 PM.


Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.5.0 RC3
MP2K Magazine
Visitor Map



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69