How listview selection changed event work. It called twise
问题 I have list view control where on change of selection, I do check - if selected record count is greater then zero then only enable group box controls else keep it disable. Because, those are controls are related to selected record only. if no record selected then it should not be enable. Following is my listview's selected changed event: Private Sub lv_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lv.SelectedIndexChanged If lv.SelectedItems.Count() > 0 Then ... .