I'd like to save to a txt file the items currently existing in a tableview.
I have this code but the rows written in the txt file are like this one:
[Ljava.lang.String;@514c7262
What am I doing wrong?
Thank you
I have this code but the rows written in the txt file are like this one:
[Ljava.lang.String;@514c7262
B4X:
File.OpenOutput(LogFolder,LogFilename,True)
Dim LogList As List
LogList.Initialize
For c = 0 To TableView1.Items.Size - 1
LogList.Add(TableView1.Items.Get(c))
Log(LogList.Get(c))
Next
File.WriteList(LogFolder,LogFilename,LogList)
What am I doing wrong?
Thank you