[2008] - ListView Row Coloring
2 questions,
1). How do I set a color to RBG: 220, 231, 245
Tried:
item.BackColor("220, 231, 245")
and
item.BackColor = "220, 231, 245"
and
item.BackColor = Color("220, 231, 245")
none work.
2). my current code only highlights rows that have a value, how can I do the whole listview?
vb Code:
Dim item
For Each item In trackList.Items
If (item.Index Mod 2) = 0 Then
item.BackColor = Color.Red
Else
item.BackColor = Color.Yellow
End If
Next
Re: [2008] - ListView Row Coloring
Figured out my first question, but how about my second?