View Single Post

  #2 (permalink)  
Old 08-18-2005
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,123
Hi
Code:
            Directions dir = route.Directions;
            for (int i = 0; i < dir.Count; i++) {
                object o = i;
                map.Location = dir.get_Item(ref o).Waypoint.Location;
And there you go
Reply With Quote