View Single Post

  #3 (permalink)  
Old 01-17-2005
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,094
Hi,

This access the dataset by number (it starts at 1 instead of 0):
Code:
            object o = 1;
            MP.ActiveMap.DataSets.get_Item(ref o);
This is by name:
Code:
            object o = "My other pushpins";
            MP.ActiveMap.DataSets.get_Item(ref o);
Reply With Quote