Could I please get some help here "LocationViewer" is my listView, that i now have loaded with my list.
"LocationTextInput" is a textedit I want to load with the selection from the listview.
When ever I select some item form the listview the app stops.
B4X:
Sub LocationViewer_ItemClick (Position As Int, Value As Object)
LocationViewer.GetItem(Position)
LocationTextInput.text = LocationViewer.GetItem(Position)
End Sub
here it is, It is just one of the database examples im playing with trying to learn a bit.
if you click the button on the top, it will go to a layout with a listview that displays the database files. I want to be able to select one and load it.
Right now if you create a new "location" it works fine, just not the listview