How to Create a Full-Colored CListCtrl
Posted
by Sven Freitag
on December 6th, 2001
Environment: VC++ 5.0
Additionally, if you'd like to be able to set the color for every item inside your CListCtrl you can use this derived CListCtrl .
Using the CColorListCtrl Class
You'll see how easy it is to use this control
I would like to thank Codeguru.com and its team for Publishing this article on their site. Please do post me any modification that will improve the code.
Comments
Can this control be added to an Excel Userform?
Posted by horose on 03/27/2005 02:38pmI have an application that displays some data from an Excel spreadsheet in a format similar to the multi-column list pictured in your example. Can this control be added to an Excel Userform. If this is possible, it would be very useful to me. Howard
ReplyShow selection always bug
Posted by Legacy on 12/04/2003 12:00amOriginally posted by: Sergey
Bug Description:
When the control is in "show selection always" state, and previously selected item is being deselected,the item is still shown as selected when the focus is set back to control.
Fix:
in function SetSel(..) change following line:
if (SetItemState(pos, nState, LVIS_SELECTED|LVS_EX_FULLROWSELECT))
to
if (SetItemState(pos, nState, LVIS_SELECTED|LVS_EX_FULLROWSELECT|LVIS_FOCUSED))
Reply
how to change the color of column head
Posted by Legacy on 05/12/2003 12:00amOriginally posted by: gengyf
Found a bug in ColorListCtrl.cpp
Posted by Legacy on 04/20/2003 12:00amOriginally posted by: Tsuyoshi Moriyama
Populating the Column only
Posted by Legacy on 11/11/2002 12:00amOriginally posted by: Mark
Per the sample code provided. How can I populate the column and COLUMN only for each header. For instance, I'd like to populate the "Item" column with Line 1, Line 2, etc. Leave the rest empty.
Reply
Why don't use CListCtrl-functions? BkColor does not work!
Posted by Legacy on 09/11/2002 12:00amOriginally posted by: Christian
Why you don't use the original CListCtrl-functions to modify the style of the ListCtrl, insert items, change item color and so on???
ReplyWrong Category
Posted by Legacy on 08/12/2002 12:00amOriginally posted by: x3r0
I was looking for listboxes not list controls purhaps someone should put this in the correct category for CListCtrl.
ReplyMinor error in InitDialog - possible correction
Posted by Legacy on 07/26/2002 12:00amOriginally posted by: Richrd Muller
What has this to do with CListBox
Posted by Legacy on 07/10/2002 12:00amOriginally posted by: Jimmy Jackson
[Comment deleted for being too banal]
ReplyHow to change the column head color ?
Posted by Legacy on 04/10/2002 12:00amOriginally posted by: JoungJin Hwang
Please~~~~~~~~~ Helf me!!!
ReplyLoading, Please Wait ...