Ok this is an odd one. In my program, after I populate listitems into my listview, I want to set the Subitems(3) forecolor to blue.

So my subitems column text will be a different color than the main listitems column. The following code works, but it only changes the forecolor of the first listitems subitem(3). It should change the entire column not just one why is it doing this?
VB Code:
  1. ListView1.ListItems(1).ListSubItems(3).ForeColor = vbBlue
Where should I have this line of code? Right after I populate the listview? Any explanation is appreciated. Thanks.