With ListView
controls, you can specify a column to sort by, and there's a method to sort()
whenever you want.
However, this only allows for single column sorting.
I'm keen to sort by say, Column A first, and then by Column F for when they are the same.
I've found a few custom compare classes written online, but wondered if stackoverflow could show a cleaner way. Plus having this here may help others looking for it in future :)
Any suggestions or examples on how to go about this appreciated.