Re: Removing Item Highlight from CListCtrl
I would try using SetItemState() to set the highlight to look like what you
want. If you are actually selecting something (not just listing a bunch of
lines to look at) you may want to at least display a focus rectangle around
the current item, but you could get rid of the highlight by making a call
like:
To unhighlight an item and unfocus it
lc.SetItemState(nItem, LVIS_FOCUSED|LVIS_SELECTED);
To highlight the item
lc.SetItemState(nItem, LVIS_SELECTED, LVIS_SELECTED);
To unhighlight and focus it:
lc.SetItemState(nItem,LVIS_SELECTED);
lc.SetItemState(nItem, LVIS_FOCUSED, LVIS_FOCUSED);
You could clear all of the bits by using -1 for the statemask, but you may
clear something you don't want cleared like state or overlay image (like in
displaying shortcut arrows and stuff)
http://msdn.microsoft.com/en-us/library/9t97k8h9(VS.80).aspx
http://support.microsoft.com/kb/173242
http://msdn.microsoft.com/en-us/library/bb774733(VS.85).aspx
Tom
"Landon" <Landon@discussions.microsoft.com> wrote in message
news:D0D7DBB5-AAC6-41F9-8FA6-B33A537879D1@microsoft.com...
Hi I use MFC VC++ 4.2.
I have a CListCtrl, a few CEdit, a Clear Button and a few buttons.
Clear button function is to clear all CEdit and also clear the highlight
from the selected item.
My question is:
1. How to remove the highlight from the selected item?
2. I also need to disable a few buttons if there is no item selected.
How to do those things?
Thank you very much.