Hi all,

With frmView!ListView1.ListItems(frmView!ListView1.SelectedItem.index)

        .SubItems(5) = "Paid"
        .SubItems(5).ForeColor = RGB(0, 255, 0)
    End With
This puts "Paid" into column 5, but it gives object required error on forecolor change.


This works when I populate ListView1


               .ListItems(j).ListSubItems.Add , , Format(Format(myNewArray(i, 7), "###,##0.00"), "@@@@@@@@@@@@@")   'Amt.Due
                If Val(myNewArray(i, 13)) < 100 Then
                    .ListItems(j).ListSubItems.Item(4).ForeColor = RGB(255, 0, 0)
                End If
How did I foul this up?

Thanks