Kevin_Williams
12-20-2006, 01:19 PM
Is there an easy way to highlight all the pushpin in a dataset?
Currently, I'm doing the following
MapPoint.Recordset rs = objDataSet.QueryAllRecords();
rs.MoveFirst();
while (!rs.EOF)
{
rs.Pushpin.Highlight = true;
rs.MoveNext();
}
rs = null;
Currently, I'm doing the following
MapPoint.Recordset rs = objDataSet.QueryAllRecords();
rs.MoveFirst();
while (!rs.EOF)
{
rs.Pushpin.Highlight = true;
rs.MoveNext();
}
rs = null;