View Single Post

  #2 (permalink)  
Old 05-09-2004
techecho's Avatar
techecho techecho is offline
Junior Member
White Belt
 
Join Date: May 2004
Posts: 7
figured it out I set the dataset not the pushpin symbol

For x = 0 To 9
Set objDataSet = MyMap.DataSets(sSetTrk(x))
objDataSet.Symbol = 20
Set objRSet = objDataSet.QueryAllRecords
objRSet.MoveFirst
Do While Not objRSet.EOF
objRSet.Pushpin.Symbol = 20
objRSet.MoveNext
Loop
Next

look OK
Reply With Quote