I have a column with dates on it and I'm trying to sort it according to that.

Code:
DataGridView2.Columns("0").DefaultCellStyle.Format = "dd/mm/yy"
            DataGridView2.Sort(DataGridView2.Columns("0"), ListSortDirection.Descending)
I tried to use this but it only sorts by the first two digits, dd, and not with the full date.

I searched but couldn't find anything, any idea?

Thanks.