Okay, basically, I want to get the index of the currently selected item (MultiSelect is set to False) in a ListView every time the selection changes. I'm using 'ListView.SelectedIndices.Item(0)' as the index of the currently selected item. It works fine when I use it on the Click event, but I want to get it every time the selection changes, whether by mouse or keyboard.
When I try to do it on the SelectedIndexChanged event, it works the first time, but the next time I select something, it gives me the error: ArgumentOutOfRangeException -- Value of '0' is not a valid for 'index' (referring to ListView.SelectedIndices.Item(0)). Can anybody please tell me what I'm doing wrong?
Question
PibbageMan
Okay, basically, I want to get the index of the currently selected item (MultiSelect is set to False) in a ListView every time the selection changes. I'm using 'ListView.SelectedIndices.Item(0)' as the index of the currently selected item. It works fine when I use it on the Click event, but I want to get it every time the selection changes, whether by mouse or keyboard.
When I try to do it on the SelectedIndexChanged event, it works the first time, but the next time I select something, it gives me the error: ArgumentOutOfRangeException -- Value of '0' is not a valid for 'index' (referring to ListView.SelectedIndices.Item(0)). Can anybody please tell me what I'm doing wrong?
Thanks.
Link to comment
https://www.neowin.net/forum/topic/358458-vbnet-get-index-of-selected-item-in-listview/Share on other sites
4 answers to this question
Recommended Posts