M Meigionel TS Member Licensed User Jun 28, 2018 #1 In B4A, we had a SetSelection member in Listview, I was looking for just than in B4J listview, but could not find it. How would I programmatically select a item in a listview in B4J? I mean what is the equivalent of SetSelection in B4J?
In B4A, we had a SetSelection member in Listview, I was looking for just than in B4J listview, but could not find it. How would I programmatically select a item in a listview in B4J? I mean what is the equivalent of SetSelection in B4J?
Daestrum Expert Licensed User Longtime User Jun 28, 2018 #2 B4X: ListView1.SelectedIndex = 3 ' select 4th item in list Upvote 0