View Single Post

  #2 (permalink)  
Old 09-10-2004
Anonymous Anonymous is offline
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Funny how you can search differently after you post a question. This seems to get the name ok, which I can work with, would still be open to suggestions.
Code:
private void axMap_SelectionChange(object sender, AxMapPoint._IMappointCtrlEvents_SelectionChangeEvent e)
{
	MapPoint.Pushpin pushPin = (MapPoint.Pushpin)e.pNewSelection;
	MessageBox.Show(pushPin.Name);
}
Mike
Reply With Quote