Code:
 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim lCount As Integer
        For lCount = 1 To 5
            ListView1.Items.Add(lCount.ToString)
        Next

        If ListView1.Items.Count > 0 Then
            ListView1.Items(0).Selected = True
        End If
I have even write the code to select the first node,i want first row should be blue(Selected). But its not coming to be blue?