Hi.
I have 2 Map data in list example :
now assume i want to modify m2 variable data example i change "Erel" to "B4x"
how i can modify it in list?(my list size is large)
I have 2 Map data in list example :
B4X:
Dim l1 as list
l1.initialize
dim m1,m2 as map
m1.initialize
m1.put("name","Dennis")
m1.put("ID",1)
m2.initialize
m2.put("name","Erel")
m2.put("ID",2)
l1.add(m1)
l2.add(m2)
now assume i want to modify m2 variable data example i change "Erel" to "B4x"
how i can modify it in list?(my list size is large)