Community of VE/MapPoint Users and Developers
This is a discussion on Standard Symbols List within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Is there a way to display the standard symbols list on a VB form to allow the user to pick ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
|
There is nothing exposed by the MapPoint object model but you can write you own code to provide the same function. Creat a form, add an image list, listview and a command button. Put the icons in an image list. Code for the form could look something like this: Private Sub Command1_Click() For i = 1 To ListView1.ListItems.Count If ListView1.ListItems.Item(i).Selected = True Then symbolNumber = ListView1.ListItems.Item(i) Unload Me End If Next End Sub Private Sub Form_Load() For k = 0 To 255 ListView1.ListItems.Add , , k, k + 1 Next End Sub Private Sub ListView1_DblClick() For i = 1 To ListView1.ListItems.Count If ListView1.ListItems.Item(i).Selected = True Then symbolNumber = ListView1.ListItems.Item(i) Unload Me End If Next Unload Me End Sub
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
| ||||
|
Here is where you can download the PushPin Icons from Microsoft. http://www.microsoft.com/downloads/r...eleaseid=32426
__________________ John http://www.support-pc.com Order MapPoint 2006 Here https://secure.mp2kmag.com/?refer=support-PC |
![]() |
| Tags |
| list, standard, symbols |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Having trouble getting symbols to match MapPoint's symbols | BobFromBoston | MapPoint 2006/2009 Discussion | 1 | 05-07-2006 02:06 PM |
| List of Available Symbols | Winwaed | MapPoint 2006/2009 Discussion | 17 | 03-25-2005 05:09 PM |
| NMEA Standard | Anonymous | MapPoint 2006/2009 Discussion | 2 | 06-17-2004 02:54 PM |
| MapPoint's Standard 45 Colour Palette | Winwaed | MapPoint 2006/2009 Discussion | 3 | 05-11-2004 08:06 PM |
| Looking for "Standard" Mapping software program th.... | Anonymous | MapPoint 2006/2009 Discussion | 1 | 05-31-2002 02:47 PM |