The program checks to see if a text file exists, if it doesn't I want a method of creating the list and then saving it to File.DirDocuments (which I have). Would a TextView with a Stepper be a way to add and delete (if necessary) and then a Save button to store it in the File.DirDocuments?
So if the text file doesnt exist, I want the ability to add 6-10 names to a list, textbox, something. What I am looking for is suggestions of what would be the best input method for adding, deleting incorrect names and then ultimately saving the list
Thanks, that input method will work nicely. If I want to check the state of the Boolean and then do something with it my "Key" is called Delete so I was thinking of something like, however, whether the boolean is checked or isnt it always enters the IF
B4X:
If Options1.ContainsKey("Delete") = True Then
Options1.Put("Name", "")
TextArea1.Text = ""
End If