I'm an old VB-6.0 guy and trying to get the selected item from a CustomListView.
I thought the 'Value' property would return the text of the selected item but it doesn't. It always returns "0"
It is a very simple listview with only single-line text items. Could someone give me an example of how to do this?
I think mcqueccu is asking you how you are adding the items to customlistview. This:
SudokuLijst.AddTextItem(s, returnedvalue)
if returnedvalue is the file name, then:
B4X:
Sub SudokuLijst_ItemClick (Index As Int, Value As Object)
Log(Index & " - " & Value)
FileNaam = value
End Sub