Community of VE/MapPoint Users and Developers
This is a discussion on Open all pushpins balloons at once? within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hi, Do any of you guys know how to open the balloons on all pushpins at once? Where I work ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Open all pushpins balloons at once? Do any of you guys know how to open the balloons on all pushpins at once? Where I work uses Mappoint to get a list of coordinates with a name and description from an SQL server, I don't deal with the backend stuff I'm just the one that has to double click on 60 pushpins a day, which on a slow VNC link is a bit boring. I guess the maps been spread over a wall built from 14 50" DLP projection cubes makes up for it :) Hope you can help ben |
| ||||
|
Ben, Not sure of anyway to do that without code (Visual Basic or something like that). Sounds like you would have to ask your administrator or whoever to see if they could add that function. If they are importing from data from SQL chances are they might know how to add a command button for you to toggle the balloons on and off. If thay are willing to help you but don't know how to do it, point them here....
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
| |||
|
thanks for the reply, at least i know i'm not missing anything obvious. I have been speaking to the admin and he has no idea on how to do it. I imagine he would look into harder if he had to do it every day though ;) I should probably start a new thread but does any one know how i would make the railway lines stand out more on the map? ben |
| |||
| Re: Open all pushpins balloons at once?
I have developed a code which you might be able to run and get all the ballons to pop up with the info. Let me know if you want me to send you the .exe file Quote:
|
| |||
| ||||
| Re: Open all pushpins balloons at once?
I'm sure people would be intrested in seeing the code if you would not mind sharing with us... [quote="Anonymous"]I have developed a code which you might be able to run and get all the ballons to pop up with the info. Let me know if you want me to send you the .exe file
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
| ||||
|
Ok, this question seems to come up alot so here is the code to get the balloons to pop up for each pushpin on a mappoint map. In Visual Basic make sure you have a Reference to Microsoft Mappoint 9.0 Object Library (North America) I put this code in a command button as an example. Keep in mind there is no error checking here and if you were not running mappoint at all you would get an error. Private Sub Command1_Click() Dim objmap As MapPoint.Map Dim objDataSet As MapPoint.DataSet Dim objRecordset As MapPoint.Recordset Set objmap = GetObject(, "MapPoint.Application").ActiveMap For Each objDataSet In objmap.DataSets Set objRecordset = objDataSet.QueryAllRecords Do Until objRecordset.EOF objRecordset.Pushpin.BalloonState = geoDisplayBalloon objRecordset.MoveNext Loop Next End Sub
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
| ||||
|
Jerry, I've developed a COM Addin for some of my clients that I plan to make available via a web site in the near future. In the mean time you can contact me directly if intrested. (I do charge for the software.) For those intrested, the COM Addin allows you to select All Datasets or choose one from a pull down menu. You can then choose the balloon state (All info, Just name or None).
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
![]() |
| Tags |
| balloons, open, pushpins |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BALLOONS | Anonymous | MapPoint 2006/2009 Discussion | 0 | 02-23-2005 10:14 AM |
| Importing Balloons that stay open | Anonymous | Wish List | 0 | 02-23-2005 10:02 AM |
| Help Please.....Mappoint VB6 Save Map/ Open Map / Pushpins | questphil | MapPoint 2006/2009 Discussion | 0 | 11-15-2004 11:16 AM |
| Saving a map with many balloons | BTurrel | MapPoint 2006/2009 Discussion | 1 | 07-30-2003 04:08 PM |
| pushpin balloons | Manuel | MapPoint 2006/2009 Discussion | 2 | 12-04-2002 07:55 PM |