To color all of the column, you have to place your code in a loop.

if you want subitem(3) to be red, then

for i = 1 to listview1.listitems.count
listview1.listitems(i).listsubitems(3).forecolor=vbred
next


Works on my station

Ken Mason