I would like to be able to set the backcolor of a column in a listview control. But... can this be done ? I know how to do the backcolor for a row but not a column.
I hope someone can help....
Thanks
Here's the answer:
1st - Set the property "UseItemStyleforSubItems" to False
Then you can specify the color you wish for the column.
eg. lvitem.SubItems(9).BackColor = System.Drawing.Color.Aqua
