A Very Useful Class to Display SQL SELECT Results

Figure 1. Illustrate CRecordListCtrl based on standard CListCtrl.
Introduction
In this article, I present a simple CRecordListCtrl to display the results of a SQL SELECT operation. Why another similar grid control? Yeah, you say; many grids are available for VC++ developers, but this control is small and very useful in MFC applications. Moreover, in combination with CListCtrlEx, presented at http://www.creative-case.com/articles/ClistctrlEx.htm, you will find many advanced unique features for developers and end users. Readers also can replace MFC ODBC classes to MFC DAO. Using ADO or OLE DB classes is also possible. Moreover, a demo for CListCtrlEx virtual grid control targeted for a large amount of data was published in September of 2004 http://www.creative-case.com/articles/ClistctrlEx.htm.

Figure 2. Illustrate CRecordListCtrl based on CListCtrlEx.
In most cases, all that you need to do is call the following:
// aDSN is ODBC datasource name // aSQL is SQL SELECT query m_List.LoadListCtrl(CString aDSN, CString aSQL);
How to Use the Control
Using CRecordListCtrl is very simple.
- Include the RecordListCtrlEx.h and RecordListCtrlEx.cpp files in your project.
- If you want to use CListCtrlEx in this control instead of CListCtrl, just replace CListCtrl with CListCtrlEx.
Conclusion
By reading this article, you receive two variants for using the CRecordListCtrl control. The first is based on CListCtrl, providing an easy-to-use way to display SQL SELECT query results. The second is based on CListCtrlEx, and also makes an easy way possible to show the results of SQL SELECT and provides a lot of end-user-friendly functionality. The functions are:
- Multicolumn sorting (working as SQL ORDER BY)
- Multicolumn filtering (working as an additional WHERE section in SQL SELECT)
- Column data type auto detection (allows the user input to be more friendly)
- Column coloring and dragging
- Storing/Loading control state
Usage
This software is released into the public domain. You are free to use it in any way you like. You should save the Author text in the header files. If you modify it or extend it, please consider posting new code here for everyone to share. This software is provided "as is," with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.
My special thanks go to the other authors.
Downloads
Download source code - 3 KbDownload demo project - 186 Kb

Comments
The link for the CListCtrlEx doesn't exist.
Posted by malfaro on 04/22/2008 07:27pmThe URL: http://www.creative-case.com/articles/ClistctrlEx.htm doesn't exist anymore. please send me the project files and the article. My mail is mauricioalfaro@telesal.net
ReplyHelp!!! I need the ListCtrlEx.h to compile
Posted by fgmproxy on 12/20/2004 01:19amI think you have done a good job, I like the function you code bring to us!!!
-
ReplyThis article presents CRecordListCtrl class
Posted by Vitali on 12/20/2004 03:35amThis article presents CRecordListCtrl. Please read appropriate article at the: http://www.creative-case.com/articles/ClistctrlEx.htm for CListCtrlEx usage.
ReplyWhere Can I Find 'ListCtrlEx.h'???????
Posted by smaak on 07/09/2004 04:55am-
ReplyThis article presents CRecordListCtrl class
Posted by Vitali on 07/09/2004 06:28amDear smaak,
please carefully read Usage section of the articleabout CListCtrlEx at the URL: http://www.creative-case.com/articles/ClistctrlEx.htm
With best wishes,
ReplyVitali Halershtein
Adjustable Row Height as in Flex Grid
Posted by ushamim on 06/17/2004 04:10amIt was very interesting to see all the enhancements you have done in the CListCtrl but actually i was wondering if there is any way we can add the adjustable row height funtionality of a grid control into the CListCtrl
-
Replynot in current version - height can be changed only for all rows once
Posted by Vitali on 06/17/2004 10:20amIn the current version only all rows height can be changed by setting imagelist on the list control. Just set up the imagelist with image 1 pixel width and neccessary height on the list control to do this.
ReplyThanks
Posted by Legacy on 10/01/2003 12:00amOriginally posted by: Just Developer
Thanks for the code. It really useful.
-
Reply
-
ReplyWhere Can I Find 'ListCtrlEx.h'???????
Posted by smaak on 07/08/2004 08:34amGreat But you could include 'ListCtrlEx.h'
Posted by blueneon on 03/19/2004 06:40amGreat but the CListViewEx version dosnt compile
im sure you know about this but...
this line causes the project not to compile. Can you include the 'ListCtrlEx.h' with the project. Alex Reply