View Single Post

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

Code:
            object o = "My Pushpins";
            Recordset rs = MP.ActiveMap.DataSets.get_Item(ref o).QueryAllRecords();
            rs.MoveFirst();
            while (!rs.EOF) {
                // here do what you wants to do
                rs.MoveNext();
            }
Reply With Quote