When I insert items into a list control.. Can
I change the color of the text that is displayed?
Thanks in advance!
Printable View
When I insert items into a list control.. Can
I change the color of the text that is displayed?
Thanks in advance!
Hi. Yes, you must create the list control with style LVS_OWNERDRAWFIXED. Then the list control will send the message WM_DRAWITEM for each list item to its parent. In the parent catch this message and draw the list item in the way you like.