I have a comma separated list of multiple routes. Each line in the list is a point. Each route has a starting location and ending location, and some routes have one or more waypoints, with a sequence specified in the list. The points are already pre-ordered, like so:
route A,start,123 my rd,anytown,CA
route a,end,456 my rd,anytown,CA
route b,start,789 yr rd,anytown,CA
etc.
I am writing a VB app to take this data, map it, and draw straight lines connecting all points in each route. The result would be multiple unique, nonconnecting lines, one for each route.
Is there a way in Mappoint 2002 to either
1. create/display multiple routes or a collection or routes on a single map?
2. When importing the list, have it imported in the order it is provided? Using .importdata to create the dataset, and .queryallrecords to create the recordset, when I walk the recordset using .movefirst and .movenext, the recordset is not in the order that the comma delimited list is in.
Thanks for any help anyone can provide!