J
JoelB
Apparently CF doesn't support sorting a dataview on multiple columns. The
following all work:
MyDV.Sort = "Col1"
MyDV.Sort = "Col2 DESC"
....but this doesn't:
MyDV.Sort = "Col1, Col2 DESC"
No error occurs.
I am using the Dataview to sort my data before binding it to a combo. I
need the two column sort because the dataset is built with a UNION query (I
won't get into the details).
Has anyone else encountered this, or does anyone have any comments?
Joel
following all work:
MyDV.Sort = "Col1"
MyDV.Sort = "Col2 DESC"
....but this doesn't:
MyDV.Sort = "Col1, Col2 DESC"
No error occurs.
I am using the Dataview to sort my data before binding it to a combo. I
need the two column sort because the dataset is built with a UNION query (I
won't get into the details).
Has anyone else encountered this, or does anyone have any comments?
Joel