hello The solution you gave is true for sorting whole listview but what if i want to sort particular column of a listview.... Me.lst1.Sorting = SortOrder.Descending the above syntax will sort whole listview... but not particular column ...so please help...
D
dhaval khatri
@dhaval khatri
Posts
-
problem related to sorting of listview.... -
problem related to sorting of listview....hi this lst1 are lbl2 shortform written for listview and labels....
-
problem related to sorting of listview....hello every one i am having problem related to listview.I want to sort partivular column of listview (ascending or descending)on label mouse click event.I knew how to sort whole listview for that my code is :- Private Sub lbl2_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lbl2.MouseClick Try Me.lst1.Sorting = SortOrder.Descending Catch ex As Exception MsgBox(ex.ToString) End Try End Sub please help.......