now all all items not checked is it possible to check items by code before put it into the list?
C Cor Active Member Licensed User Longtime User Jan 21, 2011 #1 now all all items not checked is it possible to check items by code before put it into the list?
Erel B4X founder Staff member Licensed User Longtime User Jan 21, 2011 #2 Will add it to the feature list.
Erel B4X founder Staff member Licensed User Longtime User Feb 1, 2011 #3 InputMap keyword added to the next beta: B4X: Dim m As Map m.Initialize m.Put("Item #1", True) m.Put("Item #2", False) m.Put("Item #3", False) m.Put("Item #4", True) InputMap(m, "Check items") It doesn't return any value. Instead the map gets updated with the new checked state values.
InputMap keyword added to the next beta: B4X: Dim m As Map m.Initialize m.Put("Item #1", True) m.Put("Item #2", False) m.Put("Item #3", False) m.Put("Item #4", True) InputMap(m, "Check items") It doesn't return any value. Instead the map gets updated with the new checked state values.