Hi all,
I import data from excel, but having read the refresh threads I can't work out how to refresh the data in the table view.
I read this post
but it doesn't work
Could you direct me to a solution please.
I import data from excel, but having read the refresh threads I can't work out how to refresh the data in the table view.
I read this post
B4X:
Dim tv As TableView
Dim tvl As List
tvl.Initialize
tvl.AddAll(tv.Items)
tv.Items.Clear
For i = 0 To tvl.Size - 1
Dim r() As Object = tvl.get(i)
tv.Items.add(Array As Object(r(0), r(1), r(2)))
Next
but it doesn't work
Could you direct me to a solution please.