View Single Post
  #1 (permalink)  
Old 07-02-2009, 10:19 AM
Ylva D Ylva D is offline
VB.NET Forum Newbie
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Jul 2009
Age: 29
Posts: 2
Reputation: 0
Ylva D is on a distinguished programming path ahead
Lightbulb Does DataView.ToTable() keep a descending sort order?

Hi everyone!

I have a problem with sorting a DataTable. I'm using DataView.Sort and then DataView.ToTable() to get the sorted table. Then I go through the table row by row and create nodes in a TreeView which is shown in a desktop application.

My problem is that I can sort the data in ascending order and it is shown in the TreeView in a correct way, but when I use the same sort mechanism but just change the order to descending it doesn't work.

But maybe the problem lies in the DataView.ToTable function. Does this keep a descending order or do I have to fix this myself when I create nodes in my TreeView by going through the DataRows in reverse order?

Hoping someone knows this.
Thanks in advance,

/Ylva
Reply With Quote