Suppose I have the following code:
1) How do I get the content of aRegistros.Get (0) in individual variables?
2) How do I change the content "Initial Balance" for "FINAL Balance"?
B4X:
Dim aRegistros, aCampos As List
aRegistros.Initialize
aCampos.Initialize
aCampos.Add(0)
aCampos.Add("Saldo Inicial")
aCampos.Add("What?")
aCampos.Add(1535)
aRegistros.Add(aCampos)
2) How do I change the content "Initial Balance" for "FINAL Balance"?