How to can set single data into a Object?
Example set all data into object
Flow for set single data into object
Example set all data into object
B4X:
Dim TableList As List
TableList.Initialize
TableList.Add(Array(Ind+1, ResultMap.Get("name") )
Flow for set single data into object
B4X:
Dim TableList As List
Dim TableRow as ????
TableList.Initialize
TableRow???? = Ind+1
TableRow??? = ResultMap.Get("name")
TableList.Add(TableRow)