Sometimes sorting data can be easy and sometimes it can be difficult. If you have data in a listview you can spend a great deal of time writing ICompare functions. This is appropriate for non-trivial applications but can be a little intimidating for inexperienced programmers. Also, it is a problem where the format of the input data changes. Detached recordsets provide a method which allows ad hoc sorting of data. With a little planning, they can be used to provide sorting for data where the number of fields is not known until runtime. Once you get the "messy" stuff out of the way (defining the fields), the actual operation is relatively simple. Also, sorting of columns with multiple criteria is trivial. Another benefit is that sorting can be done without having to write custom sort code. The following code requires a form with three buttons (named btnByName, btnByDate and btnBySalary), and one ListView (named ListView1). ListView1 should be set to Details view and have three columns with the header text "Name", "Date", and "Salary".
Sorting of the data in the recordset is done by assigning a string to the Sort property. Sorts can be in ascending (ASC) or descending (DESC) order. A separate order can be given for each field. You give the sort string as follows
recordset.Sort = "fldname direction, fldname direction, etc"
You can specify one field or multiple fields. The default sort order is ASC so the following
recordset.Sort = "fldname, fldname DESC"
Sorts in ascending order on the first field, then in descending order on the second field.
Sample data in file defined by TESTDATA
Jim,1953-12-22,47000
George,1957-12-01,38000
Maureen,1956-06-19,72000
Harold,1983-02-28,42000
Fred,1974-09-28,38000