Pravee7094
Active Member
Hi team,
If you want to load the data in to B4x table, You just make the data as List.
but here, I wanna load one string value in to B4x table.
How to do it? I tried but no success
Here is the code.
Any Suggestion or Help.
Regards
Praveen
If you want to load the data in to B4x table, You just make the data as List.
but here, I wanna load one string value in to B4x table.
How to do it? I tried but no success
Here is the code.
B4X:
Sub ic_customcamera_result_found(result As String)
Dim root As List
root.Initialize
For Each colroot As Map In root
barcode_result = colroot.Get(result)
root.Add(barcode_result)
Next
B4xtable.SetData(root)
End If
End Sub
Any Suggestion or Help.
Regards
Praveen