Hello people,
I require your help once again.
I have a listview and it has many columns and rows in it, and they have data filled in it.
Now i want to change the font of a specific row and in a specific column, how can i do that.
With WM_SETFONT, i change font of the whole listview, but i want to chnage font of only the selection.
Please help
Think you're going to need to OWNER_DRAW to do that.
Owner draw is a bit of overkill for simply setting the font for individual cells, easier to just use the custom draw notifications (http://msdn.microsoft.com/en-us/library/bb761817(VS.85).aspx), I have an example of a list view custom draw application on my website.