Link to home
Start Free TrialLog in
Avatar of tdubroff
tdubroff

asked on

Hi-liting/Shading a string in a CListBox?

I have derived a class from CListBox and made it owner draw.  I have also updated the DrawItem() function to draw the strings that are added to the list box.  Now my problem is, once the user double-clicks on the string I'd like to have it remain shaded gray.  How do I do this? Help!
Avatar of Tommy Hui
Tommy Hui

What exactly do you mean by remain shaded gray? Do you mean as if it wasn't selected? Or if it is selected?

Regardless, the code you have for owner-draw determines exactly how the items are to be displayed. I suspect you probably have code in there to check if the state is selected or focused and to draw something different. One of those can be combined to achieve the effect you want.

For example, if you want it to appear selected whether the listbox has focus or not, then remove the check for the focused state because that is no longer needed.

Note that you can also change the selected state of the item when the user double clicks on it. If you don't want it to be selected after double clicking, then add the code to turn off the selection.
Avatar of tdubroff

ASKER

I have a list box that is filled with several strings.  Once the user double-clicks on each item, then that item gets selected and is displayed with a blue background.  When the user selects a different item, then I want the original item to be displayed with a gray background (meaning that it has been selected before).
ASKER CERTIFIED SOLUTION
Avatar of RONSLOW
RONSLOW

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks RONSLOW.  Once again I have gotten something working using your suggestions.  However my problem is not quite done.  The user can if he/she wants press a button which will un-gray all grayed items.  The question is then, how do I cause a refresh of the list box (how do I force DrawItem to be called)?  
Invalidate() it.

Thanks a bunch!
Don't you just love two-word answers - short and to the point :-).

Glad I could help !!