B4X:
Dim data As List
data.Initialize
data.Add(Array("First", 2, DateUtils.SetDate(1969, 7, 20)))
data.Add(Array("Second", 3.4, DateUtils.SetDate(1978, 6, 5)))
data.Add(Array("Third", 5, DateUtils.SetDate(2001, 9, 11)))
data.Add(Array("Fourth", 6.7, DateUtils.SetDate(2025, 8 , 1)))
B4XTable1.SetData(data)
data.Add(Array("Fifth", 8, DateUtils.SetDate(1971, 1, 11)))
data.Add(Array("Sixth", 9.0, DateUtils.SetDate(1972, 2, 22)))
B4XTable1.SetData(data)
"9 out of 6" ?
Feels like it'd be an easy fix to make the count reasonable. I like that .SetData is cumulative, so ideally would become "9 out of 10" rather than "6 out of 6"
Last edited: