MapPoint Forums

MapForums

Community of VE/MapPoint Users and Developers




Open all pushpins balloons at once?

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


Go Back   MapPoint Forums > Map Forums > MapPoint 2006/2009 Discussion

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read



Click here to register

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-06-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Open all pushpins balloons at once?

Hi,

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
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 08-07-2002
John Meyer's Avatar
Senior Member
Blue Belt
 
Join Date: Jul 2002
Posts: 479
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 08-08-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 08-08-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
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:
Originally Posted by Ben Shaw
Hi,

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 08-08-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
that would be sweet, send it to ben@benshaw.co.uk. i'll let you know how i get on.

thanks
ben
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 08-10-2002
John Meyer's Avatar
Senior Member
Blue Belt
 
Join Date: Jul 2002
Posts: 479
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7 (permalink)  
Old 08-16-2002
John Meyer's Avatar
Senior Member
Blue Belt
 
Join Date: Jul 2002
Posts: 479
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8 (permalink)  
Old 08-18-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
John,

That worked a treat, thank you very much. I have had to use your code in an Access form as VB is not installed on our machines. I will pass it on to the BOFH so he can integrate it.

you the man
ben
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9 (permalink)  
Old 09-24-2002
Junior Member
White Belt
 
Join Date: Sep 2002
Posts: 1
Send a message via MSN to jerryn3
Pushpin Baloons

Is there any way I can get that file?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10 (permalink)  
Old 09-25-2002
John Meyer's Avatar
Senior Member
Blue Belt
 
Join Date: Jul 2002
Posts: 479
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
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
balloons, open, pushpins


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


All times are GMT -5. The time now is 01:55 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
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