Top "Clistctrl" questions

A class in the Microsoft Foundation Classes framework; a "list view control" which displays a collection of items each consisting of an icon (from an image list) and a label.

How to detect a CListCtrl selection change?

I want to execute some code when the user selects a row in a CListCtrl (report view, I don't care …

visual-c++ mfc clistctrl
How to set an item in CListCtrl as selected?

ClistCtrl is set to single selection & single column in report view with no header. I have tried SetItemState(0,LVIS_…

c++ winapi selection clistctrl
MFC: How to change color/boldness of inidividual rows of ListCtrl?

Using MFC and Visual Studio 2010 C++. I need a way to make certain individual rows of a CListCtrl stand out (…

visual-c++ mfc row highlighting clistctrl
Auto resizing column widths in a CListCtrl

How can I make a CListCtrl to resize the width of its columns automatically? Usually, when an item in the …

mfc resize clistctrl
CListCtrl: How to maintain scroll position?

I have a CListCtrl (report style) where I clear the list and repopulate it at certain times. I'd like to …

mfc scroll clistctrl
How to catch a scroll event in a CListCtrl?

I subclassed CListCtrl into my own class, and I use it in several dialogs and views. What I want to …

c++ mfc scroll clistctrl
CListCtrl - how to enable multiple selection

I am creating a MFC application for Windows Mobile and don't know how to enable multiple selection for List Control (…

c++ mfc windows-mobile clistctrl
Clistctrl item text color

How do you change the text color of a Clistctrl item (report view)?

mfc clistctrl
How to edit columns in-place with CListCtrl?

I want to have CListCtrl.EditLabel() for any column of the list. How can I implement such a feature?

mfc clistctrl
Get Index of Item Text in MFC CListCtrl

I've got a CString with a Text that also is an Item Text of my CListCtrl. For example: CString m_…

c++ mfc clistctrl