Listview doesnt change after items are selected.
Is this a problem with the listview's Index Changed event?
Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
'check selecteditem.length
If ListView1.SelectedItems.Count > 0 Then
Try
empLname = Trim(ListView1.SelectedItems.Item(0).Text)
empFname = Trim(ListView1.SelectedItems.Item(0).SubItems(1).Text)
Dim g As New Guid(ListView1.SelectedItems.Item(0).SubItems(3).Text)
empID = g
Catch ex As Exception
MsgBox(ex.ToString, MsgBoxStyle.OKCancel, "Error!")
Exit Try
Exit Sub
Finally
End Try
End If
End Sub
I would appreciate any input here.

