0
votes
1answer
57 views
Intercepting messages from a child of a child with MFC
I have a CListCtrl class and at the moment when a user selects one of the sub items I am displaying a CComboBox over the subitem which the user can then make a selection from.
How …
0
votes
1answer
73 views
MFC List Control
In MFC, I can edit the text of items in the list control but only for the first column by setting the Edit Labels to true. Now when I click the first column item to change its text …
0
votes
1answer
67 views
CListCtrl get item index
How do I get an item's index number using the caption text? I'm using CListCtrl class of MFC. I have the item's caption text, can I get the index for that item and then update its …
0
votes
2answers
185 views
How to catch a scroll event in a CListCtrl? MFC C++
I subclassed CListCtrl into my own class, and I use it in several dialogs and views. What I want to do is execute some code when the ClistCtrl is being scrolled vertically. I need …
0
votes
1answer
20 views
How do I un-highlight a previously selected line in an MFC CListCtrl programmatically (VS 6)?
Does anyone know how to un-highlight a previously selected line in an MFC CListCtrl programmatically ?
0
votes
3answers
133 views
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 about the other viewing modes).
How do I catch this event? is there some message …
0
votes
2answers
60 views
How to display different size images in CListCtrl
In my MFC program,I want to display different size images in a list!
I use CListCtrl and CImageList!
But the CImageList only can load fixed images!
0
votes
2answers
128 views
Catching a WM_NOTIFY message from a custom ListCtrl
My application is c++, and is a combination of MFC and ATL.
The part I'm working with here is MFC.
I have a custom list control class in one of my dialogs which inherits from CLis …
0
votes
1answer
46 views
Problem with HDN_ENDTRACK when resizing a list column
Hello Stack Overflow. I am having a bit of a problem when handling a HDN_ENDTRACKW message for a custom class which derives from CListCtrl .
Essentially, it seem that when this me …
1
vote
1answer
50 views
How to avoid CListCtrl items to be partially visible?
I have a resizeable CListCtrl and I want to avoid any item being displayed partially, ever.
For example:
I want Item 9 to not be displayed in this case. Is there a flag or meth …
2
votes
2answers
223 views
How to (fast) fill a CListCtrl in C++ (MFC) ?
Hello
in my application I have a few CListCtrl tables. I fill/refresh them with data from an array with a for-loop. Inside the loop I have to make some adjustments on how I displa …
0
votes
0answers
57 views
CListCtrl WM_TIMER event ids 42 and 43?
I have a CListCtrl derived class that provides subitem editing by creating a CEdit starting at the correct offset of the subitem. Sometimes the subitem is only partially visible so …
0
votes
1answer
313 views
click or select Clistctrl subitem (report view)
How can I determine a selected or clicked sub item of a report view Clistctrl?
2
votes
2answers
589 views
Cannot edit labels in a CListCtrl
I'm building a project with MFC Feature Pack. Is this project I have a window which includes a CView, which includes a CListCtrl-derived object. The object includes the LVS_EDITLAB …
0
votes
1answer
54 views
how to handle properties key in CListCtrl?
I want to handle the properties key press in CListCtrl in MFC and show a context menu which is already shown with right clicking. How can I do that?
