View Single Post

  #2 (permalink)  
Old 09-06-2006
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,122
Hi,

I do not understeand your question very well, but if you need to place a pushpin on a give lat/long coordinate you can use this code. MP is the name of the ActiveX control in this example.

Code:
 Location loc = MP.ActiveMap.GetLocation(lat, lon, 1);
 Pushpin pp = MP.ActiveMap.AddPushpin(loc, name);
Reply With Quote