Inputlist response and selected item

bluedude

Well-Known Member
Licensed User
Longtime User
How can we get to the selected item from a Inputlist and also notice if someone clicked `Back`
 

Cor

Active Member
Licensed User
Longtime User
B4X:
   result=InputList(rootList,"Select Root",defaultRootNameSelection)
   If result-3 Then Return 'no selection  can be back key

'now get name

   itemname=rootlist.get(result)

grCor
 
Upvote 0
Top