473,757 Members | 10,263 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Listview control not sorting correctly, is it becuase it's a numer

Hi, I'm using vs2005, .net 2 for C# windows application.
One of my column on the Listview control has numericstring. Other columns
are sorting correctly except this one. It seems to be sorting the 1st
numeric char at the beging of the string. How do I resolve this problem?
Thank you?
--
Thanks.
Aug 29 '07 #1
3 4636

You could implement the IComparer interface & use an ArrayList to store the
contents that are used to populate the ListBox, now pass the comparer when
using the Sort method.

public class MyComparer : IComparer
{
/*
Less than zero
x is less than y.

Zero
x equals y.

Greater than zero
x is greater than y.
*/

public int Compare(object x, object y)
{
int nx = Int32.Parse((st ring)x);
int ny = Int32.Parse((st ring)y);
return nx.CompareTo(ny );

}
}
I see that your listbox is a numeric string, so you can implement your custom
logic in the Compare method above.

-Arun

Hi, I'm using vs2005, .net 2 for C# windows application.
One of my column on the Listview control has numericstring. Other
columns
are sorting correctly except this one. It seems to be sorting the 1st
numeric char at the beging of the string. How do I resolve this
problem?
Thank you?

Aug 29 '07 #2
Thank you for the help but I don't know what do you mean by "pass the
comparer when using the Sort method"? ( I assume the Sort method of the
Listview is what is referred here). What am I doing with the arraylist? Do
I call the compare method to sort out the array?
Thanks.
"Arunkumar Keserla" wrote:
>
You could implement the IComparer interface & use an ArrayList to store the
contents that are used to populate the ListBox, now pass the comparer when
using the Sort method.

public class MyComparer : IComparer
{
/*
Less than zero
x is less than y.

Zero
x equals y.

Greater than zero
x is greater than y.
*/

public int Compare(object x, object y)
{
int nx = Int32.Parse((st ring)x);
int ny = Int32.Parse((st ring)y);
return nx.CompareTo(ny );

}
}
I see that your listbox is a numeric string, so you can implement your custom
logic in the Compare method above.

-Arun

Hi, I'm using vs2005, .net 2 for C# windows application.
One of my column on the Listview control has numericstring. Other
columns
are sorting correctly except this one. It seems to be sorting the 1st
numeric char at the beging of the string. How do I resolve this
problem?
Thank you?


Aug 29 '07 #3
Check out MSDN @ http://msdn2.microsoft.com/en-us/lib...er(vs.80).aspx.
The comparer example I gave was is pretty close to the full blown example
listed in MSDN. You will need your custom comparer to do comparisons in a
way that is different from the default behavior. The snippet I gave was actually
for a ListBox rather than a ListView

-Arun
Thank you for the help but I don't know what do you mean by "pass the
comparer when using the Sort method"? ( I assume the Sort method of
the Listview is what is referred here). What am I doing with the
arraylist? Do I call the compare method to sort out the array?
Thanks.

"Arunkumar Keserla" wrote:
>You could implement the IComparer interface & use an ArrayList to
store the contents that are used to populate the ListBox, now pass
the comparer when using the Sort method.

public class MyComparer : IComparer
{
/*
Less than zero
x is less than y.
Zero x equals y.

Greater than zero x is greater than y. */

public int Compare(object x, object y)
{
int nx = Int32.Parse((st ring)x);
int ny = Int32.Parse((st ring)y);
return nx.CompareTo(ny );
}
}
I see that your listbox is a numeric string, so you can implement
your custom logic in the Compare method above.

-Arun
>>Hi, I'm using vs2005, .net 2 for C# windows application.
One of my column on the Listview control has numericstring. Other
columns
are sorting correctly except this one. It seems to be sorting the
1st
numeric char at the beging of the string. How do I resolve this
problem?
Thank you?

Aug 29 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1739
by: rmorvay | last post by:
I have successfully integrated sorting in the listview control with the following code: Private Sub ListView_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles ListView.ColumnClick If ListView.Sorting = System.Windows.Forms.SortOrder.Ascending Then ListView.Sorting = System.Windows.Forms.SortOrder.Descending Else ListView.Sorting = System.Windows.Forms.SortOrder.Ascending
5
3264
by: Simon Middlemiss | last post by:
I am writting a program to manage DTS packages which is based on the code example at the following link http:\\www.support.microsoft.com/?kbid=319985. I need to do things in a Windows Forms Application when various things occur in the package so I have written some custom events to reraise the events caught in the PackageEventsSink class. I also have a listview in details mode with several columns, my problem is that when I try and...
2
4733
by: Anushya devi | last post by:
Hi All I used listview and tried to update it by using Addrange. When the number of items is less, it works fine.. But I need to update nearly 200,000 items and it hangs. Also i need to add images to listview also(This is to list all the items in my inbox, and want to give the user the feel of outlook). Since it hangs for even 1000 items in the inbox, i tried to shift to virtual listview. But virtual listview
0
1221
by: Abhishek | last post by:
Hi! I am using listview control having 4 columns. I want it to behave in a similar manner as the details view of windows explorer. i.e it should sort on all the columns and all the columns should have the functionality to move horizontally (horizontal order of the columns) for this I am using Listview class . I reffred to MSDN and included a class which implements the System.Collections.IComparer interface that performs the ListViewItem
19
25466
by: Owen T. Soroke | last post by:
Using VB.NET I have a ListView with several columns. Two columns contain integer values, while the remaining contain string values. I am confused as to how I would provide functionality to sort columns based on the column header the user has clicked in both Ascending and Descending formats.
1
5679
by: Mamatha | last post by:
Hi I have one application ,that diplays data from database into the listview control.While adding data to the listview i want to display an icon to the leftside of the first column's data.Here is my code, but icon is not apperead with that code. Source code
3
472
by: Curtis | last post by:
I am trying to do a simple sort on a list view.With the listview control the first time I sort on the control it sorts the items but anytime after that it fails to sort. I'm sure this is a simple answer but anyways here is my code any help would be greatly apperciated. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load lvTest.Items.Add("1001") lvTest.Items.Add("5000")...
6
4801
by: Dave | last post by:
VB6 has a SorkKey property that you can setup on the ListView control to tell the ListView what column to use for sorting. In .NET there is a Sort() method and a SortOrder property that you can use to manipulate the Sorting property. My question is how do I perform the same functionality as I do in VB6 setting the SortKey and SortOrder with the ListView. Dave
2
7226
by: jediknight | last post by:
Hi, I have a listview which has columns of text and columns of numerical data. I need to be able to sort these columns into ascending/desending order whenever the user clicks on the column header. The text columns are sorted correctly but the numerical columns seem not to get sorted properly. For example I get the following result when I try to sort a numerical
0
9489
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9298
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10072
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9906
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8737
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7286
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6562
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
3
3399
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2698
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.