tags:

views:

696

answers:

1

How do you change the text color of a Clistctrl item (report view)?

+4  A: 

You need to handle the NM_CUSTOMDRAW message and change the text color in that handler.

For an example, see this article.

Stefan