how can I create a copy of elements from a map to another?
ex. i have a map with 100 elements (with 2 informations, title and ID)
I will filter this map and i want to create a second map with only the 20 elements filtered (with title & ID)
how can i copy the value filtered from a map to the other??
i can retrieve value from the original map with:
and then?
thanks
ex. i have a map with 100 elements (with 2 informations, title and ID)
I will filter this map and i want to create a second map with only the 20 elements filtered (with title & ID)
how can i copy the value filtered from a map to the other??
i can retrieve value from the original map with:
B4X:
searchTitle=m.Get("Title" & i)
IDX=m.Get("ID" & i)
and then?
thanks