Tagged Questions
The clistctrl tag has no wiki summary.
2
votes
2answers
243 views
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 maintain the vertical scroll position when doing this. I see there are a couple methods that ...
2
votes
1answer
353 views
How to catch a CListCtrl column width change event?
How can I catch CListCtrl column width change event in MFC? I believe there should be an OnNotify() event but I am note sure about various values and the parameters to use for message map and the ...
2
votes
2answers
315 views
Does LVS_EX_FULLROWSELECT have any compatibility issues with other styles?
I am trying to set the LVS_EX_FULLROWSELECT style on my grid list control as I want full row selection. However apparently it doesn't have any effect. Since I am using a number of other styles as ...
2
votes
3answers
1k views
Auto Resizing in a ClistCtrl
Is there a way to resize the listcontrol automatically? Usually when the item gets too long the back end disappears from view and the user manually has to resize the width of the column.
Is there ...
2
votes
3answers
3k 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 I can map or a ...
2
votes
2answers
950 views
How to (fast) fill a CListCtrl in C++ (MFC)?
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 display the values so data ...
2
votes
2answers
1k 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_EDITLABELS flag.
Somehow I ...
2
votes
1answer
2k views
2
votes
2answers
3k views
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?
1
vote
2answers
71 views
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 (however I do not want to use the built-in selection capability to highlight the rows). It ...
1
vote
1answer
462 views
About selecting a MFC CListCtrl item
What I'm trying to do is select an item in a CListCtrl and make the selected item visible (scroll down). What is the best way to do this?
I have tried myListCtrl.SetItemState(idx, LVIS_SELECTED, ...
1
vote
2answers
263 views
overlay image in CListCtrl
I want to draw an transparent overlay image in my bottom-down corner of my CListCtrl.
How can you do that with MFC? ( I need that without flickers ).
Thanks in advice
1
vote
2answers
414 views
Coupling an MFC CListCtrl and CTreeCtrl to get a view of the whole tree, not just one node at a time
Consider Windows Explorer (or regedit or similar). To the left side, there is a tree view, and to the right, a list view. In all cases I know of, the contents of the right view reflect the attributes ...
1
vote
2answers
103 views
Limiting the number of entries in a list control MFC
I need to limit the entries that appear in my list control since two much entries make my MFC program slow. Is there a way to show only the last few entries (say for an example the most recent 100 ...
1
vote
1answer
975 views
How do I prevent flickering on CListCtrl?
I'm using a CListCtrl/CListView report view (LVS_REPORT) in virtual mode (LVS_OWNERDATA) with LVS_EX_DOUBLEBUFFER enabled and I encounter ugly flickering. Double buffer have a real effect but it ...
1
vote
1answer
204 views
Is it possible to edit data in place using CListCtrl - if not, can anyone suggest an alternative control in MFC?
I'm designing a MFC app in which I'd like to have a grid with 2 coloumns : both editable in which the user will input data and the app will get notified about it. The number of rows can be ...
1
vote
1answer
651 views
Using a CListCtrl, how can I make selection color entire row?
I currently have NM_CUSTOMDRAW message calling a function to color the rows of a listctrl in report mode. I can detect when a row is selected and color it myself, but this method doesn't get called ...
1
vote
2answers
400 views
HitTest not working as expected
I am wanting to display a context menu when a user right-clicks on an item within a CListCtrl. My code is as follows:
void DatastoreDialog::OnContextMenu(CWnd *pWnd, CPoint pos)
{
// Find the ...
1
vote
2answers
1k views
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_SELECTED,LVIF_STATE) and
SetSelectionMark(int index) but these don't work.
1
vote
1answer
605 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.
However I have a ...
1
vote
1answer
680 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 method for this? How ...
1
vote
2answers
2k 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 this to be in the ...
1
vote
2answers
1k views
How to add data Filtering using CListCtrl and CHeaderCtrl
Background:
Applications that manipulate a collection of data typically present using a grid containing a header. These same applications typically incorporate a filter to allow the user to narrow ...
0
votes
0answers
13 views
Disable auto-resizing of CListCtrl when user hits Ctrl+NumPlus
I have a CListCtrl derived class, which is drawing stuff using DrawItem. It is set to render items in Report-View. I have inserted a dummy column with 800 width. In DrawItem implementation, I would ...
0
votes
0answers
59 views
MFC issues with Unicode and fonts in CListCtrl using Windows 7
I'm developing an application in C++ using MFC that needs to be able to handle Unicode characters. Whenever I try to view Unicode characters in a CListCtrl, they always show up as squares, but I can ...
0
votes
0answers
29 views
MFC CListrCtrl: Update virtual-list data in bulk
Is there a way, either natively supported by CListCtrl, or with some coding technique, to update a chunk of data in a virtual-list-mode CListCtrl instead of one at a time?
By default, when the list ...
0
votes
2answers
69 views
How to differentiate some LVITEMS (file or directory)?
So I am implementing a CListCtrl using PostMessage(LVN_INSERTITEM,0,(LPARAM) lvitem). And i need a way to differentiate lvitems, so that later on when i will get a lvitem, to tell if it's file or ...
0
votes
1answer
22 views
Retrieving CTreeCtrl items after closing the Dialog
In an application I am required to only process the items selected in a tree. I am using MFC CTreeCtrl in a property sheet added to a Dailog. The tree shows a list of folders, the user selects some ...
0
votes
4answers
239 views
MFC CListCtrl eating mouse up events?
It seems that CListCtrl doesn't send mouse up events unless there is a double click.
I've attempted sending the missing message from the mouse down handlers to compensate but that causes other ...
0
votes
0answers
163 views
[Wired GUI feature?]If TrackMouseEvent() is called within CListCtrl::OnMouseMove, hover above ListCtrl will make a selection!
This is not sth wrong with the mouse device. This seems sth wrong with TrackMouseEvent.
Steps to reproduce:
Use vc2005 to create MFC dialog application. Add a ListCtrl item.
Use "Add class" to add ...
0
votes
2answers
351 views
MFC limit selected item in ClistCtrl
Hi
I use ClistCtrl that have 20 items and I want to limit selected item number.
for example only 10 item can be selected.
how i can do it?
thanks for your help herzl.
0
votes
1answer
218 views
Hitting Escape versus Enter triggering LVN_ENDLABELEDIT in CListCtrl
how can I differentiate between the two, when the edit field is empty in both cases?
when the user hits escape, I assume user doesn't want the new value at all, when
enter is hit, I assume the user ...
0
votes
1answer
69 views
how can i cancel editing in CListCtrl by hitting the “cancel” key?
I'm editing an item in CListCtrl control. an edit box appears where I can enter text.
The event of entering the text will, however, not be catched by the LVN_KEYDOWN handler.
how do I catch it ...
0
votes
2answers
228 views
Virtual List Control Problem
I'm using a virtual lit control and I get the data from a map. My problem is when I run the code, it displays the list ok, but when the mouse cursor moves on to the list control or when I try to ...
0
votes
2answers
143 views
Up and Down icons in CListCtrl
I have a CListCtrl with multiple columns, all of which are able to be sorted by. I would like to add up and down icons so that it is clear which column is currently sorted upon, and in which ...
0
votes
2answers
392 views
Correct way to replace CHeaderCtrl with custom version in a CListCtrl
CListCtrl has a CHeaderCtrl 'built-in' and we want to override it with something customized, i.e a class which derives from CHeaderCtrl.
What's the best/correct way to do this, assuming we have a ...
0
votes
1answer
95 views
Problem with OnMeasureItem()
I used OnMeasureItem() in my MFC ListControl to increase the height of the rows, and added WM_ON_MEASUREITEM() message in the Map. THe code I used is as follows:
void ...
0
votes
3answers
878 views
C++/MFC: Handling multiple CListCtrl's headers HDN_ITEMCLICK events
I'm coding an MFC application in which i have a dialog box with multiple CListCtrls in report view. I want one of them to be sortable.
So i handled the HDM_ITEMCLICK event, and everything works just ...
0
votes
1answer
229 views
Persist highlight in CListCtrl after double click
Figured it out. LVIF_STATE should have been LVIF_IMAGE. See, I knew it was elementary...
I have a CListView derived class with an OnDoubleClick() handler in a VC++6.0 project. I need to persist ...
0
votes
1answer
244 views
Can't get OnContextMenu to work for custom CListCtl class
I am trying to get a context menu to work for a CListCtrl derived class. I just created a method OnContextMenu, but it isn't being called. What am I missing? I am using Visual Studio 2008, to ...
0
votes
1answer
657 views
CListCtrl: how to get column width when use different fonts on same column?
I derived a class from CListCtrl called CListCtrlCustomDraw, and use NM_CUSTOMDRAW handler to draw the list.
The problem is I have different fonts for selected item and unselected item, they are ...
0
votes
1answer
77 views
Displaying the size of a file in CListCtrl
I am working in Windows MFC application..In my design am displaying the file details (type,name,size) in a CListCtrl control. I found those file details using FileStatus but when I try to display, I ...
0
votes
1answer
486 views
Vertical Scrollbar in CListCtrl
I'm using a CListCtrl in Icon view, but it scrolls horizontally:
1 3 5 7 -->
2 4 6 8 -->
I'd rather it scroll horizontally:
1 2
3 4
5 6
| |
V V
Is there a way to do this?
0
votes
2answers
996 views
Finding file size windows MFC application
Hey guys,
I Am working on windows MFC application C...I am preparing a report list in my design
using CListCtrl were i can list the name,size,type and modified date of the file..I dont know ...
0
votes
2answers
839 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, I'm able to change ...
0
votes
2answers
164 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
1answer
648 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 text. It will be ...
0
votes
1answer
399 views
Problem with HDN_ENDTRACK when resizing a list column
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 message is sent, the actual value which ...
0
votes
3answers
447 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
742 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 CListCtrl.
I'm trying ...