I have an issue while sorting out dates in a ComboBoxEdit.
Using this line of code :
cbeDates.Sorted = true
Sorts the items in a weird way. The output is :
01/01/2013
01/02/2013
01/03/2013
....
02/01/2013
02/02/2013
....
But I want the following expected output :
01/01/2013
02/01/2013
....
01/02/2013
02/02/2013
Did you guys ever deal with this kind of issue ? Thanks in advance for your replies.