P
Pewak
Hi,
I am adding a row to the datatable, and then I want to sort it, so I
put this into a dataview, and use the following code to sort it, but
it stays in the same order after I've done it.
datatable.rows.add(newrow)
dim dv as dataview
dv = datatable.DefaultView
dv.Sort = ("process_desc")
where process_desc is the name of the column to order, but it stays in
the same order. Any ideas why this is???
I am adding a row to the datatable, and then I want to sort it, so I
put this into a dataview, and use the following code to sort it, but
it stays in the same order after I've done it.
datatable.rows.add(newrow)
dim dv as dataview
dv = datatable.DefaultView
dv.Sort = ("process_desc")
where process_desc is the name of the column to order, but it stays in
the same order. Any ideas why this is???