D darabon Active Member Nov 1, 2020 #1 I have a map in each edittext in a layout that I save in activity_create B4X: Dim m as Map m = txt.Tag m.Put("name","darabon") Why when I put name to map,dont add to map? and there is no name key in map
I have a map in each edittext in a layout that I save in activity_create B4X: Dim m as Map m = txt.Tag m.Put("name","darabon") Why when I put name to map,dont add to map? and there is no name key in map
Erel B4X founder Staff member Licensed User Longtime User Nov 1, 2020 #2 This code is correct (though I prefer to write: Dim m As Map = txt.Tag). Any problem you have happens somewhere else... This is all that I can say. Upvote 0
This code is correct (though I prefer to write: Dim m As Map = txt.Tag). Any problem you have happens somewhere else... This is all that I can say.
D darabon Active Member Nov 1, 2020 #3 Erel said: This code is correct (though I prefer to write: Dim m As Map = txt.Tag). Any problem you have happens somewhere else... This is all that I can say. Click to expand... Thank you I think if I use Type instead of map, my problem will solve Isn't it? Upvote 0
Erel said: This code is correct (though I prefer to write: Dim m As Map = txt.Tag). Any problem you have happens somewhere else... This is all that I can say. Click to expand... Thank you I think if I use Type instead of map, my problem will solve Isn't it?
Erel B4X founder Staff member Licensed User Longtime User Nov 1, 2020 #4 No. The problem is somewhere else. Upvote 0