How to sort on a listview column header? 
Author Message
 How to sort on a listview column header?

In VB6 clicking the listview header caused the column to be resorted in
ascending or descending sequence.
Like this:
      If lvwDRIReconcile.SortOrder = lvwAscending Then

         lvwDRIReconcile.SortKey = ColumnHeader.Index - 1

         lvwDRIReconcile.Sorted = True

         lvwDRIReconcile.SortOrder = lvwDescending

      Else

         lvwDRIReconcile.SortKey = ColumnHeader.Index - 1

         lvwDRIReconcile.Sorted = True

         lvwDRIReconcile.SortOrder = lvwAscending

      End If

How does one do this in VB.NET?

Thanks,

Dean



Mon, 09 May 2005 11:14:26 GMT  
 How to sort on a listview column header?
A sample is included in the framework reference docs at
ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/cpref/html/frlrfsystemwindows
formslistviewclasslistviewitemsortertopic.htm

or it can be found at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpre...
frlrfsystemwindowsformslistviewclasssortingtopic.asp

The summary is that you have to implement a custom sorter and configure the
listview to use it.

Sam
VB Team

--
This posting is provided "AS IS" with no warranties, and confers no rights.


Quote:
> In VB6 clicking the listview header caused the column to be resorted in
> ascending or descending sequence.
> Like this:
>       If lvwDRIReconcile.SortOrder = lvwAscending Then

>          lvwDRIReconcile.SortKey = ColumnHeader.Index - 1

>          lvwDRIReconcile.Sorted = True

>          lvwDRIReconcile.SortOrder = lvwDescending

>       Else

>          lvwDRIReconcile.SortKey = ColumnHeader.Index - 1

>          lvwDRIReconcile.Sorted = True

>          lvwDRIReconcile.SortOrder = lvwAscending

>       End If

> How does one do this in VB.NET?

> Thanks,

> Dean



Sat, 14 May 2005 04:29:38 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. sort a listview by column header click

2. sort ListView by date and time by pressing the column header

3. ListView: column header sort mark

4. Sorting the content of list view on clicking column headers

5. ? 3014 Can't open any more tables - Click header to sort by column fails

6. how to implement column header sorting using MS Hierarchical flex grid

7. List View click on header to sort date column

8. Sort arrows on column headers for VB6

9. Sorted a listview on header click

10. Listview find Column Header Text

11. ListView multi-lined column headers

12. Listview Column Header Icon

 

 
Powered by phpBB® Forum Software