Hello
I am using code to write a table
save
read
in the table I get
where i made a mistake?
I am using code to write a table
save
B4X:
Dim su As StringUtils
Dim finalList1 As List
finalList1.Initialize
For Each row() As Object In T_konf.Items
Dim temp(row.Length) As String
For i=0 To row.Length-1
temp(i) = row(i)
Next
finalList1.Add(temp)
Next
su.SaveCSV(File.DirApp,plik&".csv",",",finalList1)
read
B4X:
Dim su As StringUtils
Dim finalList As List
finalList = su.LoadCSV(File.DirApp,nazwa_pliku&".csv",",")
For Each row() As Object In finalList
'
T_konf.Items.Add(row)
Next
in the table I get
where i made a mistake?