hi
I've a listview with filenames loaded from a database.
after I load the file names to the listview I want to sort the listview first by TYPE and afterwards by filename.
how can it be done
thanks
Printable View
hi
I've a listview with filenames loaded from a database.
after I load the file names to the listview I want to sort the listview first by TYPE and afterwards by filename.
how can it be done
thanks
Hi Yossilb
I think that it would be a lot easier to do an Order By when querying the data than through code.
you would have to implement your own sorting mechanism. Here's an example but it's single column only as far as i know. U would have to adapt it to sort by multiple columns.
Sort Listview
I agree with Clanguage. Sort the unlaying data before loading the ListView.Quote:
Originally Posted by Clanguage