Click here to Skip to main content
Licence 
First Posted 6 Sep 2001
Views 298,008
Bookmarked 94 times

Sort List Control

By | 6 Sep 2001 | Article
A list control with inbuilt sorting, and an easier way to add columns and rows

Sample Image - screenshot.jpg

Introduction

This adds sorting to MFC's list control class. Sorting is automatically taken care of: it will sort text, dates and numbers in ascending or descending order, and show an arrow in the appropriate direction in the heading for the sorted column. It also adds some other things that make life easier when using list controls - it is much easier to set the columns and add rows, and it can load and save the column widths.

How to use it

Look at the example to see how it is used. You need to add the files SortListCtrl.cpp/h and SortHeaderCtrl.cpp/h to your project, then associate a CSortListCtrl variable with your list control (you can do this with ClassWizard).

In the OnInitDialog member function of your dialog class you set the columns and their initial widths by calling the list control's SetHeadings function, it takes a string, or a string ID in the string table, which defines the column headings and their widths, 

e.g.

m_ctlList.SetHeadings( _T("Name,120;Date of Birth,90;Score,50") );

Adding rows is very easy, you call the list control's AddItem function with the same number of strings as the number of columns you added, 

e.g.

m_ctlList.AddItem( _T("Mark Jackson"), _T("09/08/1974"), _T("100") );

To remember the columns' widths call the list control's LoadColumnInfo function after setting the headings, add a handler for your dialog's WM_DESTROY message and in there call SaveColumnInfo.

Implementation

It was a REAL pain to do, your callback function gets the item data for the two rows to compare, but what use is that, you need the text to compare! This control stores the text for the columns in the item data, so the compare function can get at it, it also allows users of the control to use the item data as usual.

Credits

The code for drawing the arrow in the header control was written by Zafir Anjum

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Mark Jackson

Web Developer

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 Pingroupjeffywin16:53 22 Jun '11  
GeneralLicencing terms and conditions in a commercial product PinmemberR. Choudhury20:56 27 Mar '11  
GeneralLicensing for commercial application Pinmemberwill62625:09 19 Oct '10  
Generaljump to line Pinmemberaddict854:10 27 Jan '09  
GeneralWasteful approach PinmemberPanic2k316:28 3 Dec '08  
GeneralWant to add integer Pinmembermailtochandra2000@yahoo.com0:40 12 Nov '08  
Questionchange headings? Pinmembergeneral_era22:21 1 Oct '08  
AnswerRe: change headings? PinmemberEPausU0:31 17 Jul '09  
GeneralQuestion about License... PinmemberBK CHA17:05 7 Sep '08  
GeneralNeed help inserting integer items into a list control Pinmemberdromichetes21:33 3 Sep '08  
QuestionCListCtrl with virtual list and Images? Pinmembertermal3:21 13 Aug '08  
Questionwhy no selection? Pinmembergeneral_era23:13 5 May '08  
QuestionHow to process List Item click event? Pinmemberzotiger22221:15 28 Nov '07  
GeneralColumn separators are not displaying Pinmembera_snm2:41 11 Oct '07  
QuestionUsing Virtual lists? Pinmembertermal22:34 5 Jun '07  
GeneralProblem with SetFont() Pinmembertermal3:01 18 Apr '07  
QuestionChange rowheight in CSortListCtrl!? Pinmemberbreak;2:59 17 Jan '07  
Generalderive a CCtrlView from a CSortListCtrl Pinmembermimosa19:40 30 Apr '06  
GeneralHelp problemswhen i open the dialog again PinmemberEmiliano9017:55 7 Feb '06  
GeneralRe: Help problemswhen i open the dialog again Pinmembernm_zjf15:43 6 Dec '06  
GeneralSelecting a row PinmemberZoltan4:33 4 Jan '06  
GeneralRe: Selecting a row Pinmemberfrankpetersen7:21 19 May '07  
QuestionHelp the control causes a crash Pinmembertarink12:43 28 Nov '05  
GeneralNeed help to use the Sort Iist Control with XP-Style! Pinmembermirso6722:41 30 May '05  
GeneralRe: Need help to use the Sort Iist Control with XP-Style! PinmembereXRange16:21 22 Jun '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 7 Sep 2001
Article Copyright 2001 by Mark Jackson
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid