Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this to sort a list view: http://support.microsoft.com/kb/319401 It's working great, except when I try to sort a date column, it things 2AM comes after 10PM (since 2 is greater than 1).

4/7/2011 10:00:00 PM
4/7/2011 2:00:00 AM

This is the code I'm using:

var lvcs = new ListViewColumnSorter();
ListView.ListViewItemSorter = lvcs;
lvcs.Order = SortOrder.Ascending;
lvcs.SortColumn = 1; //<-Contains DateTime values in string format
ListView.Sort();

So how can I convert to DateTime and sort using the code above?

share|improve this question

4 Answers

up vote 6 down vote accepted

Look at the "Sorting Dates" section in this article - you replace the Compare method.

Example Code:

try {
    DateTime dateX = Convert.ToDateTime(listviewX.SubItems[ColumnToSort].Text);
    DateTime dateY = Convert.ToDateTime(listviewY.SubItems[ColumnToSort].Text);
    compareResult = ObjectCompare.Compare(dateX, dateY);
}
catch {
    compareResult = ObjectCompare.Compare(listviewX.SubItems[ColumnToSort].Text, listviewY.SubItems[ColumnToSort].Text);
}
share|improve this answer
I used this example, I added the code I used to your solution. Thanks, I appreciate the help! – sooprise Apr 7 '11 at 15:09

You should get your items from your listview and convert the date/time strings to DateTime objects and then call sort on those objects (having put them in a collection) and then put them back into your ListView.

Hopefully that solves your issue.

share|improve this answer
Hi, by putting them "back into [my] listview", will that mean the list will be cleared and refilled? – sooprise Apr 7 '11 at 14:58
yea, well you want to put them back in, in sorted order obviously... – Tony The Lion Apr 7 '11 at 15:04

above is correct because you are doing string comparison of list.

try to convert to DateTime and Create List<DateTime> and sort it then,

You can use DateTime.TryParse or ParseExact to specify you own parsing format

share|improve this answer

The answer marked as correct here did not help me. My app seemed to go in to an infinite loop of thrown exceptions. To avoid using a try/catch and catching thrown exeptions, I used the following and it works perfectly:

DateTime dateX;
DateTime dateY;
if (
    DateTime.TryParse(listviewX.SubItems[ColumnToSort].Text, out dateX)
    && DateTime.TryParse(listviewY.SubItems[ColumnToSort].Text, out dateY)
    )
{
    compareResult = ObjectCompare.Compare(dateX, dateY);
}
else
{
    compareResult = ObjectCompare.Compare(listviewX.SubItems[ColumnToSort].Text, listviewY.SubItems[ColumnToSort].Text);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.