goodmanrAy
Programmer
GetTableNames:
I want to display the table names in a combo box in chronological order not alphabetical order like they are at the moment
e.g. the files name are January02, Febrauary02 etc
var mylist : TStringList;
begin
MyList := TStringList.Create;
Try Session.GetTableNames('C:\My Documents\'.'*.db',false,false,MyList);
Combo1.items := MyList;
finally
MyList.Free;
end;
Any ideas?
I want to display the table names in a combo box in chronological order not alphabetical order like they are at the moment
e.g. the files name are January02, Febrauary02 etc
var mylist : TStringList;
begin
MyList := TStringList.Create;
Try Session.GetTableNames('C:\My Documents\'.'*.db',false,false,MyList);
Combo1.items := MyList;
finally
MyList.Free;
end;
Any ideas?