Hi!... I had a datagrid which i had i column "File Name". In File Name column i had a to z value....
Im using 2011 Q2 control and VB.NET 2010
I use datasource to bind the value to my datagrid. I able to sort the value from assending to desending....
The datagrid also show me correctly from a - z become z - a.
after sorting i will use... the code below to get the value:
Dim FileN as String = ""
For i = 0 to RadGridView1.rowcount - 1
FileN = RadGridView1.Rows(i).Cells(0).Value
msgbox(FileN)
Next
after desending it i can't the get "z" as the first value... it still give me the value "a".
May i know how to do that? it's need urgently because i change the current .net datagrid to telerik gridView for user.
Thank You!
Regards
Johnny
Im using 2011 Q2 control and VB.NET 2010
I use datasource to bind the value to my datagrid. I able to sort the value from assending to desending....
The datagrid also show me correctly from a - z become z - a.
after sorting i will use... the code below to get the value:
Dim FileN as String = ""
For i = 0 to RadGridView1.rowcount - 1
FileN = RadGridView1.Rows(i).Cells(0).Value
msgbox(FileN)
Next
after desending it i can't the get "z" as the first value... it still give me the value "a".
May i know how to do that? it's need urgently because i change the current .net datagrid to telerik gridView for user.
Thank You!
Regards
Johnny