If the user that is put into the listview is Roxbury or Roxbury22 then I need the text to be red, however, it is remaining the default white...Can anyone help me here?
Code:
ListView1.Items.Clear()
Dim I As Integer
For I = 1 To users.Length - 1
ListView1.Items.Add(users(I))
If ListView1.Items(I).Text = "Roxbury" Or "Roxbury22" Then
ListView1.Items(I).ForeColor = Color.Red
End If
Next