Private Sub ucListView1_OnSubItemPrePaint(ByVal Item As Integer, ByVal SubItem As Integer, NewBackColor As Long, NewForeColor As Long, Process As Boolean)
' Be careful what you add here!
If (Item Mod 2) Then
NewBackColor = RGB(150, 200, 250)
NewForeColor = RGB(0, 0, 250)
Process = True
End If
' or uncomment next lines for column highlighting
' If (SubItem = m_CurrentColumn) Then
' NewBackColor = RGB(150, 200, 250)
' NewForeColor = RGB(0, 0, 250)
' Else
' NewBackColor = vbWindowBackground
' NewForeColor = vbWindowText
' End If
' Process = True
End Sub
'//
Private Function pvRandomString(ByVal nChars As Integer) As String