Hi!
I have a data list order by fecha.
Example list of three element:
NOMBRE LATITUD LONGITUD DATOS
'885781' 40,80306 0,68528 FECHA: 22/07/2004 08:30 ESTADO: En marcha POSICIÓN: 7.24 Km al NE de Aldea (L'), E (2)
'885781' 40,13333 0,13944 FECHA: 22/07/2004 09:31 ESTADO: En marcha POSICIÓN: 2.70 Km al O de Ribera de Cabanes, E (2)
'885781' 37,72694 -1,56028 FECHA: 22/07/2004 14:30 ESTADO: En marcha POSICIÓN: 3.58 Km al SSE de Carivete, E (2)
I execute method LinkData and the this code:
CjtoPosiciones := CjtoDatosGlobal.ImportData(blablabla);
Posiciones := CjtoPosiciones.QueryAllRecords;
TotalPosiciones := CjtoPosiciones.RecordCount;
for i:=1 to TotalPosiciones do begin
// Here I add all position to Object Route
Posiciones.MoveNext;
end;
Do someone know as I can order the list that MapPoint return inside object Posiciones (or QueryAllRecord) after I execute method LinkData ???
MapPoint return object QueryAllRecord without order and I need that the list is order for my route.
Is a big problem for me.
Thank you, very much.
Daniel.