>I am working on a map display which is linked to a database containing
>information on our trucks. I.E. Lat/Long, Customer, Truck number,
[quoted text clipped - 6 lines]
>I'm working in C sharp, but suggestions in any language would be
>great!
There's no tooltip functionality for MapPoint pushpins AFAIK, but you could
set the "Note" property, e.g. like so:
MapPoint.Location location =
axMappointControl1.ActiveMap.GetLocation(47,-122, 0);
MapPoint.Pushpin thePin =
axMappointControl1.ActiveMap.AddPushpin(location, "My pushpin");
thePin.Note = "This is a pushpin note";
thePin.BalloonState = MapPoint.GeoBalloonState.geoDisplayBalloon;
Regards,
Gilles [MVP].
(Please reply to the group, not via email.
Find my MVP profile with past articles / downloads here:
http://www.gilleskohl.de/mvpprofile.htm)
taylorkand@gmail.com - 20 Mar 2008 13:41 GMT
> >I am working on a map display which is linked to a database containing
> >information on our trucks. I.E. Lat/Long, Customer, Truck number,
[quoted text clipped - 23 lines]
> Find my MVP profile with past articles / downloads here:
> http://www.gilleskohl.de/mvpprofile.htm)
Thanks, I'll check into that and see how it goes!
Kyle