MapPoint Forums

MapForums

Community of MapPoint and Virtual Earth Users and Developers




Change the symbol of the Pushpins in a DataSet.

This is a discussion on Change the symbol of the Pushpins in a DataSet. within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Can someone tell me how (if it's possible) to modify the pushpins' symbols of a dataset, while adding them to ...


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

Today's Posts Twitter Feed 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 12-12-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Change the symbol of the Pushpins in a DataSet.

Can someone tell me how (if it's possible) to modify the pushpins' symbols of a dataset, while adding them to the map :?:
Infact in the FieldArray parameter of the ImportData Method, I cannot include somethink like GeoFieldType.geofieldsymbol for the coloumn that identify the symbol used, so that when I call the ImportData, all its pushpin are put on the map with the same symbol.
Thank in advance for your answer!!!
Dario
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 12-15-2002
John Meyer's Avatar
Senior Member
Blue Belt
 
Join Date: Jul 2002
Posts: 479
Maybe not an exact answer to you question but hope it helps...

Code:
objDataSet.Symbol = 1
You can set the symbol for a dataset (see above) but I dont think it changes pushpins already on the map. The following code could be used to change the symbol for pushpins already on the map.

Code:
Dim objDataSet As MapPointCtl.DataSet
Dim objmap As MapPointCtl.Map
Dim objRecordset As MapPointCtl.Recordset
symbolNumber = 1
Set objmap = MappointControl1.ActiveMap

    For Each objDataSet In objmap.DataSets
     If objDataSet.Name = "My Pushpins" Then
      Set objRecordset = objDataSet.QueryAllRecords
         Do Until objRecordset.EOF
           objRecordset.Pushpin.Symbol = symbolNumber
           objRecordset.MoveNext
         Loop
     End If
    Next
__________________
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
change, dataset, pushpins, symbol


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
Changing a dataset symbol - MapPoint 2002 Goldwings98SE MapPoint 2006/2009 Discussion 1 06-21-2005 08:55 AM
dataset not changing symbol techecho MapPoint 2006/2009 Discussion 1 05-09-2004 07:11 PM
mappoint dataset - pushpins itmanager MapPoint 2006/2009 Discussion 1 11-07-2003 05:27 AM
Finding nearest pushpins in dataset Dazzer MapPoint 2006/2009 Discussion 3 10-17-2003 08:38 AM
If I have one dataset with 300 pushpins, how do i .... Anonymous MapPoint 2006/2009 Discussion 1 02-26-2002 12:52 PM


All times are GMT -5. The time now is 12:52 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0 RC2
MP2K Magazine
Visitor Map

Dalaman Holiday
Enjoy a wonderfully peaceful Dalaman holiday... Book through UlookUbook and save!



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