List View Column Sorting 
Author Message
 List View Column Sorting

I have a Numeric column in my list view, and i want sort
them in numerical order how do i do this

Thanks
Anand



Sat, 06 Mar 2004 19:41:51 GMT  
 List View Column Sorting
Hello,

So far I know do numbers in a column behaves like strings.
What you can do is add some spaces before the numbers in that column.

example:

    Dim LstX As ListItem

    YourNumber = 1234
    Set LstX = ListView1.ListItems.Add(Index, Key, _
        Space(8 - Len(CStr(YourNumber))) & CStr(YourNumber), Icon,
SmallIcon)

Regards Rene Spit


Quote:
> I have a Numeric column in my list view, and i want sort
> them in numerical order how do i do this

> Thanks
> Anand



Sun, 07 Mar 2004 03:32:36 GMT  
 List View Column Sorting
Here's a sample..

Sorting ListView ListItems Using Callbacks
http://www.mvps.org/vbnet/code/callback/lvsortcallback.htm


Quote:
> I have a Numeric column in my list view, and i want sort
> them in numerical order how do i do this

> Thanks
> Anand



Sun, 07 Mar 2004 22:09:28 GMT  
 List View Column Sorting
Hi Anand,

Listview does not provide property or method to sort numerically. To
implement such function, you need to create your own comparison function
and use AddressOf to it into the Listview event handle process. You can
refer to the following KB article that illustrates how to sort by date,
which is basically the same.

http://support.microsoft.com/support/kb/articles/q170/8/84.asp

Regards,

Nick

--------------------------------------
This posting is provided solely for use by users of
http://msdn.microsoft.com/newsgroups/. It is offered "AS IS" and with no
warranties. That means there is no warranty of merchantability or fitness
for a particular purpose, and no warranty of non-infringement.



Mon, 08 Mar 2004 09:11:14 GMT  
 
 [ 4 post ] 

 Relevant Pages 

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

2. List View click on header to sort date column

3. Display Bitmaps in Sub Items and column Headers of List View During Report View

4. List View Column - - Possible items in a Single Column

5. slow list view sorting - help needed

6. List view and sorting

7. List View Sort Question

8. List View Sort order

9. Logical sorting in List View (date and/or time)

10. list view to sort

11. List View - Sort by Clicking Header

12. LIST VIEW - FILE SIZE SORT

 

 
Powered by phpBB® Forum Software