Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using ListView Column headers for sorting 2

Status
Not open for further replies.

mrdod

Technical User
Jun 12, 2006
103
US
I have a ListView control and am wondering if there is a way to click on the header Date Ented and have the List View sort ascending then descending. If not no big deal but right now I have two buttons at the top of my ListView for sorting by date and it might clean up the appearance a bit.

Thanks
 
How are ya mrdod . . .

. . . or perhaps this: Sort by Column Hearders works via mouse position! . . .

Calvin.gif
See Ya! . . . . . .
 
Listview consider all its data as string. Even the underlying data field is integer or anything else.

Here is a simple solution to sort a listview
Code:
Private Sub ListView1_ColumnClick(ByVal ColumnHeader As Object)
'   When a ColumnHeader object is clicked,
'   the ListView control is
'   sorted by the subitems of that column.
'   Set the SortKey to the Index of the ColumnHeader - 1
    Me.ListView1.SortKey = ColumnHeader.Index - 1
    ' Set Sorted to True to sort the list.
    If ListView1.SortOrder = lvwAscending Then
        ListView1.SortOrder = lvwDescending
    Else
        ListView1.SortOrder = lvwAscending
    End If
    Me.ListView1.Sorted = True
End Sub

Reload the ListView with appropriates sort order in the datasource is the best way to get the desired result.

________________________________________________________
Zameer Abdulla
Help to find Missing people
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top