I have tried to save the contents of a listview to a file without luck. I just get the message "Too many parameters" when I try
Appreciate any help with this.
B4X:
Dim SaveList As List
SaveList.Initialize
For i = 0 To Listview1.Items.Size - 1
SaveList.AddAllAt(i,Listview1 & CRLF)
Next
File.WriteList(File.DirData,"mydata.txt", SaveList)
Appreciate any help with this.